Skip to content

Commit 05df438

Browse files
committed
Fix indentation
1 parent b63891e commit 05df438

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Obfuscator.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,10 @@ private function encrypt()
7373

7474
private function make()
7575
{
76-
$sSpaces = $this->makeBreak(99+(strlen($this->sName)*4)); // Most people will have their PC bugged if they want to modify the code with an editor
76+
$sSpaces = $this->makeBreak(99 + (strlen($this->sName) * 4)); // Most people will have their PC bugged if they want to modify the code with an editor
7777

7878
$this->sPreOutput = str_replace(array('[DATA]', '[NAME]', '[BREAK]'), array($this->sData, $this->sName, $sSpaces . "\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n"), $this->sPreOutput);
79-
$this->sOutput = str_replace(array('[PRE_OUTPUT]', '[NAME]', '[BREAK]'), array(base64_encode(gzcompress($this->sPreOutput,9)), $this->sName, $sSpaces), $this->sOutput);
79+
$this->sOutput = str_replace(array('[PRE_OUTPUT]', '[NAME]', '[BREAK]'), array(base64_encode(gzcompress($this->sPreOutput, 9)), $this->sName, $sSpaces), $this->sOutput);
8080
}
8181

8282
/**

0 commit comments

Comments
 (0)