Skip to content

Commit

Permalink
Minifier.php: fix return types
Browse files Browse the repository at this point in the history
  • Loading branch information
Ciki authored Nov 20, 2023
1 parent 7a35f5a commit de9ba25
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/JShrink/Minifier.php
Original file line number Diff line number Diff line change
Expand Up @@ -679,7 +679,7 @@ protected function endsInKeyword() {
* Replace patterns in the given string and store the replacement
*
* @param string $js The string to lock
* @return bool
* @return string
*/
protected function lock($js)
{
Expand All @@ -704,7 +704,7 @@ protected function lock($js)
* Replace "locks" with the original characters
*
* @param string $js The string to unlock
* @return bool
* @return string
*/
protected function unlock($js)
{
Expand Down

0 comments on commit de9ba25

Please sign in to comment.