@@ -69,17 +69,17 @@ |
||
69 | 69 | return $this; |
70 | 70 | } |
71 | 71 | |
72 | - /** |
|
73 | - * Getter for the server instance. |
|
74 | - * |
|
75 | - * @see Server\ServerInterface Server Documentation |
|
76 | - * |
|
77 | - * @param Server\ServerInterface the server instance |
|
78 | - */ |
|
79 | - public function getServer() |
|
80 | - { |
|
81 | - return $this->server; |
|
82 | - } |
|
72 | + /** |
|
73 | + * Getter for the server instance. |
|
74 | + * |
|
75 | + * @see Server\ServerInterface Server Documentation |
|
76 | + * |
|
77 | + * @param Server\ServerInterface the server instance |
|
78 | + */ |
|
79 | + public function getServer() |
|
80 | + { |
|
81 | + return $this->server; |
|
82 | + } |
|
83 | 83 | |
84 | 84 | /** |
85 | 85 | * Getter for the active config main context. |
@@ -78,7 +78,7 @@ |
||
78 | 78 | */ |
79 | 79 | public function isValidRegex() |
80 | 80 | { |
81 | - set_error_handler(function ($errno, $errstr) { |
|
81 | + set_error_handler(function($errno, $errstr) { |
|
82 | 82 | throw new InvalidArgumentException($errstr, $errno); |
83 | 83 | }, E_WARNING); |
84 | 84 |
@@ -457,29 +457,29 @@ |
||
457 | 457 | return $this->dumperEndDirective; |
458 | 458 | } |
459 | 459 | |
460 | - /** |
|
461 | - * Sets the simple directive syntax when dumped. |
|
462 | - * |
|
463 | - * @param string $simpleDirective the simple directive syntax when dumped |
|
464 | - */ |
|
465 | - public function setDumperSimpleDirective($simpleDirective) |
|
466 | - { |
|
467 | - $this->dumperSimpleDirective = $simpleDirective; |
|
468 | - |
|
469 | - return $this; |
|
470 | - } |
|
471 | - |
|
472 | - /** |
|
473 | - * Sets the starting block directive syntax when dumped. |
|
474 | - * |
|
475 | - * @param string $startMultiLine the starting block directive syntax when dumped |
|
476 | - */ |
|
477 | - public function setDumperStartDirective($startMultiLine) |
|
478 | - { |
|
479 | - $this->dumperStartDirective = $startMultiLine; |
|
480 | - |
|
481 | - return $this; |
|
482 | - } |
|
460 | + /** |
|
461 | + * Sets the simple directive syntax when dumped. |
|
462 | + * |
|
463 | + * @param string $simpleDirective the simple directive syntax when dumped |
|
464 | + */ |
|
465 | + public function setDumperSimpleDirective($simpleDirective) |
|
466 | + { |
|
467 | + $this->dumperSimpleDirective = $simpleDirective; |
|
468 | + |
|
469 | + return $this; |
|
470 | + } |
|
471 | + |
|
472 | + /** |
|
473 | + * Sets the starting block directive syntax when dumped. |
|
474 | + * |
|
475 | + * @param string $startMultiLine the starting block directive syntax when dumped |
|
476 | + */ |
|
477 | + public function setDumperStartDirective($startMultiLine) |
|
478 | + { |
|
479 | + $this->dumperStartDirective = $startMultiLine; |
|
480 | + |
|
481 | + return $this; |
|
482 | + } |
|
483 | 483 | |
484 | 484 | /** |
485 | 485 | * Sets the ending block directive syntax when dumped. |