Skip to content

Commit

Permalink
Proper class name fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
PELock committed Aug 5, 2021
1 parent 65dcb98 commit 6792168
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ $myJObfuscator->renameMethods = true;
$myJObfuscator->shuffleMethods = true;

//
// encrypt integers using more than 15 floating point math functions from the java.lang.math.* class
// encrypt integers using more than 15 floating point math functions from the java.lang.Math.* class
//
$myJObfuscator->intsMathCrypt = true;

Expand Down
2 changes: 1 addition & 1 deletion examples/JObfuscatorExample.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
$myJObfuscator->shuffleMethods = true;

//
// encrypt integers using more than 15 floating point math functions from the java.lang.math.* class
// encrypt integers using more than 15 floating point math functions from the java.lang.Math.* class
//
$myJObfuscator->intsMathCrypt = true;

Expand Down
2 changes: 1 addition & 1 deletion src/JObfuscator.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class JObfuscator
public $shuffleMethods = true;

/**
* @var bool encrypt integers using more than 15 floating point math functions from the java.lang.math.* class
* @var bool encrypt integers using more than 15 floating point math functions from the java.lang.Math.* class
*/
public $intsMathCrypt = true;

Expand Down

0 comments on commit 6792168

Please sign in to comment.