@@ -2,7 +2,7 @@ |
||
| 2 | 2 | |
| 3 | 3 | require_once(__DIR__ . '/../../src/PhpConsole/__autoload.php'); |
| 4 | 4 | |
| 5 | -if(PhpConsole\Connector::getInstance()->isActiveClient()) { |
|
| 5 | +if (PhpConsole\Connector::getInstance()->isActiveClient()) { |
|
| 6 | 6 | // ... any PHP Console initialization & configuration code |
| 7 | 7 | } |
| 8 | 8 | |
@@ -8,8 +8,8 @@ |
||
| 8 | 8 | |
| 9 | 9 | $redirectNum = isset($_GET['num']) ? $_GET['num'] + 1 : 1; |
| 10 | 10 | |
| 11 | -if($redirectNum < 4) { |
|
| 12 | - if($redirectNum == 2) { |
|
| 11 | +if ($redirectNum < 4) { |
|
| 12 | + if ($redirectNum == 2) { |
|
| 13 | 13 | echo ${'oops' . $redirectNum}; |
| 14 | 14 | } |
| 15 | 15 | $handler->debug('Debug message in redirect №' . $redirectNum); |
@@ -3,13 +3,13 @@ discard block |
||
| 3 | 3 | require_once(__DIR__ . '/../../src/PhpConsole/__autoload.php'); |
| 4 | 4 | |
| 5 | 5 | $password = null; |
| 6 | -if(!$password) { |
|
| 6 | +if (!$password) { |
|
| 7 | 7 | die('Please set $password variable value in ' . __FILE__); |
| 8 | 8 | } |
| 9 | 9 | |
| 10 | 10 | $connector = PhpConsole\Helper::register(); |
| 11 | 11 | |
| 12 | -if($connector->isActiveClient()) { |
|
| 12 | +if ($connector->isActiveClient()) { |
|
| 13 | 13 | // Init errors & exceptions handler |
| 14 | 14 | $handler = PC::getHandler(); |
| 15 | 15 | $handler->start(); // start handling PHP errors & exceptions |
@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | 'longString' => '11111111112222222222333333333344444444445', |
| 80 | 80 | 'someObject' => new DebugExample(), |
| 81 | 81 | 'someCallback' => array(new DebugExample(), 'someMethod'), |
| 82 | - 'someClosure' => function () { |
|
| 82 | + 'someClosure' => function() { |
|
| 83 | 83 | }, |
| 84 | 84 | 'someResource' => fopen(__FILE__, 'r'), |
| 85 | 85 | 'manyItemsArray' => array(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11), |
@@ -3,7 +3,7 @@ |
||
| 3 | 3 | require_once(__DIR__ . '/../../src/PhpConsole/__autoload.php'); |
| 4 | 4 | |
| 5 | 5 | $password = null; |
| 6 | -if(!$password) { |
|
| 6 | +if (!$password) { |
|
| 7 | 7 | die('Please set $password variable value in ' . __FILE__); |
| 8 | 8 | } |
| 9 | 9 | |
@@ -45,7 +45,7 @@ |
||
| 45 | 45 | 'longString' => '11111111112222222222333333333344444444445', |
| 46 | 46 | 'someObject' => new DebugExample(), |
| 47 | 47 | 'someCallback' => array(new DebugExample(), 'someMethod'), |
| 48 | - 'someClosure' => function () { |
|
| 48 | + 'someClosure' => function() { |
|
| 49 | 49 | }, |
| 50 | 50 | 'someResource' => fopen(__FILE__, 'r'), |
| 51 | 51 | 'manyItemsArray' => array(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11), |
@@ -31,7 +31,7 @@ |
||
| 31 | 31 | try { |
| 32 | 32 | throw new Exception('Some caught exception'); |
| 33 | 33 | } |
| 34 | -catch(Exception $exception) { |
|
| 34 | +catch (Exception $exception) { |
|
| 35 | 35 | $handler->handleException($exception); |
| 36 | 36 | } |
| 37 | 37 | |
@@ -14,20 +14,20 @@ |
||
| 14 | 14 | require_once(PHP_CONSOLE_DIR . '/__autoload.php'); |
| 15 | 15 | PhpConsole\Handler::getInstance()->start(); |
| 16 | 16 | |
| 17 | -if(isset($_GET['download'])) { |
|
| 17 | +if (isset($_GET['download'])) { |
|
| 18 | 18 | header('Content-Type: application/octet-stream'); |
| 19 | 19 | header('Content-Disposition: attachment; filename="PhpConsole.phar"'); |
| 20 | 20 | readfile(PHP_CONSOLE_PHAR_FILEPATH); |
| 21 | 21 | exit; |
| 22 | 22 | } |
| 23 | 23 | |
| 24 | -if(!Phar::canWrite()) { |
|
| 24 | +if (!Phar::canWrite()) { |
|
| 25 | 25 | throw new Exception('Unable to create PHAR archive, must be phar.readonly=Off option in php.ini'); |
| 26 | 26 | } |
| 27 | -if(!is_writable(dirname(PHP_CONSOLE_PHAR_FILEPATH))) { |
|
| 27 | +if (!is_writable(dirname(PHP_CONSOLE_PHAR_FILEPATH))) { |
|
| 28 | 28 | throw new Exception('Directory ' . dirname(PHP_CONSOLE_PHAR_FILEPATH) . ' must be writable'); |
| 29 | 29 | } |
| 30 | -if(file_exists(PHP_CONSOLE_PHAR_FILEPATH)) { |
|
| 30 | +if (file_exists(PHP_CONSOLE_PHAR_FILEPATH)) { |
|
| 31 | 31 | unlink(PHP_CONSOLE_PHAR_FILEPATH); |
| 32 | 32 | } |
| 33 | 33 | |
@@ -6,7 +6,7 @@ discard block |
||
| 6 | 6 | * @author Barbushin Sergey http://linkedin.com/in/barbushin |
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | -if(isset($_GET['size'])) { |
|
| 9 | +if (isset($_GET['size'])) { |
|
| 10 | 10 | header('X: ' . str_repeat('x', $_GET['size'])); |
| 11 | 11 | die('ok'); |
| 12 | 12 | } |
@@ -25,7 +25,7 @@ discard block |
||
| 25 | 25 | $testDiff = floor($isOk ? $testDiff * 2 : $testDiff / 2); |
| 26 | 26 | $size += $testDiff * ($isOk ? 1 : -1); |
| 27 | 27 | } |
| 28 | -while($testDiff && !($size > $testLimit && $isOk)); |
|
| 28 | +while ($testDiff && !($size > $testLimit && $isOk)); |
|
| 29 | 29 | |
| 30 | 30 | ?> |
| 31 | 31 | |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | ); |
| 35 | 35 | |
| 36 | 36 | // Highlight & print feature script source code |
| 37 | -if(isset($_GET['highlight']) && isset($features[$_GET['highlight']])) { |
|
| 37 | +if (isset($_GET['highlight']) && isset($features[$_GET['highlight']])) { |
|
| 38 | 38 | highlight_string(preg_replace('/(\$password\s*=\s*).*?;/', '\1*****;', file_get_contents(__DIR__ . '/features/' . $_GET['highlight'] . '.php'))); |
| 39 | 39 | exit; |
| 40 | 40 | } |
@@ -109,7 +109,7 @@ discard block |
||
| 109 | 109 | |
| 110 | 110 | <h1 align="center">PHP Console Features examples & Utils</h1> |
| 111 | 111 | |
| 112 | -<?php if(!$isActiveClient) { ?> |
|
| 112 | +<?php if (!$isActiveClient) { ?> |
|
| 113 | 113 | <span class="warning" align="center"> |
| 114 | 114 | Google Chrome extension |
| 115 | 115 | <a href="https://chrome.google.com/webstore/detail/php-console/nfhmhhlpfleoednkpnnnkolmclajemef" target="_blank">PHP Console</a> |