@@ -1,7 +1,7 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * The Event class |
|
| 4 | - */ |
|
| 3 | + * The Event class |
|
| 4 | + */ |
|
| 5 | 5 | namespace Phile; |
| 6 | 6 | |
| 7 | 7 | /** |
@@ -1,7 +1,7 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * The Mardown parser class |
|
| 4 | - */ |
|
| 3 | + * The Mardown parser class |
|
| 4 | + */ |
|
| 5 | 5 | namespace Phile\Plugin\Phile\ParserMarkdown\Parser; |
| 6 | 6 | |
| 7 | 7 | use Michelf\MarkdownExtra; |
@@ -18,7 +18,7 @@ discard block |
||
| 18 | 18 | class Markdown implements ParserInterface |
| 19 | 19 | { |
| 20 | 20 | /** |
| 21 | - * @var mixed the configuration |
|
| 21 | + * @var mixed the configuration |
|
| 22 | 22 | */ |
| 23 | 23 | private $config; |
| 24 | 24 | |
@@ -1,9 +1,9 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * the configuration file |
|
| 4 | - * |
|
| 5 | - * @see https://michelf.ca/projects/php-markdown/configuration/ |
|
| 6 | - */ |
|
| 3 | + * the configuration file |
|
| 4 | + * |
|
| 5 | + * @see https://michelf.ca/projects/php-markdown/configuration/ |
|
| 6 | + */ |
|
| 7 | 7 | |
| 8 | 8 | return array( |
| 9 | 9 | 'empty_element_suffix' => ' />', |
@@ -1,7 +1,7 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * The PhpFastCache implemenation class |
|
| 4 | - */ |
|
| 3 | + * The PhpFastCache implemenation class |
|
| 4 | + */ |
|
| 5 | 5 | namespace Phile\Plugin\Phile\PhpFastCache; |
| 6 | 6 | |
| 7 | 7 | /** |
@@ -1,7 +1,7 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * config file for plugin |
|
| 4 | - */ |
|
| 3 | + * config file for plugin |
|
| 4 | + */ |
|
| 5 | 5 | $config = [ |
| 6 | 6 | /** |
| 7 | 7 | * Default storage engine |
@@ -1,7 +1,7 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * test class used in Phile's unit tests |
|
| 4 | - */ |
|
| 3 | + * test class used in Phile's unit tests |
|
| 4 | + */ |
|
| 5 | 5 | |
| 6 | 6 | namespace Phile\Plugin\Phile\TestPlugin; |
| 7 | 7 | |
@@ -1,7 +1,7 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * The Error Handler |
|
| 4 | - */ |
|
| 3 | + * The Error Handler |
|
| 4 | + */ |
|
| 5 | 5 | |
| 6 | 6 | namespace Phile\Plugin\Phile\ErrorHandler; |
| 7 | 7 | |
@@ -21,8 +21,8 @@ |
||
| 21 | 21 | */ |
| 22 | 22 | class Plugin extends AbstractPlugin |
| 23 | 23 | { |
| 24 | - const HANDLER_ERROR_LOG = 'error_log'; |
|
| 25 | - const HANDLER_DEVELOPMENT = 'development'; |
|
| 24 | + const HANDLER_ERROR_LOG = 'error_log'; |
|
| 25 | + const HANDLER_DEVELOPMENT = 'development'; |
|
| 26 | 26 | |
| 27 | 27 | protected $events = ['plugins_loaded' => 'onPluginsLoaded']; |
| 28 | 28 | |
@@ -1,7 +1,7 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Plugin class |
|
| 4 | - */ |
|
| 3 | + * Plugin class |
|
| 4 | + */ |
|
| 5 | 5 | |
| 6 | 6 | /* |
| 7 | 7 | * The namespace structure is Phile\Plugin\<vendor>\<plugin-name> |
@@ -1,7 +1,7 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * The Development Error Handler |
|
| 4 | - */ |
|
| 3 | + * The Development Error Handler |
|
| 4 | + */ |
|
| 5 | 5 | |
| 6 | 6 | namespace Phile\Plugin\Phile\ErrorHandler; |
| 7 | 7 | |
@@ -20,7 +20,7 @@ discard block |
||
| 20 | 20 | { |
| 21 | 21 | |
| 22 | 22 | /** |
| 23 | - * @var array settings |
|
| 23 | + * @var array settings |
|
| 24 | 24 | */ |
| 25 | 25 | protected $settings; |
| 26 | 26 | |
@@ -289,7 +289,7 @@ discard block |
||
| 289 | 289 | |
| 290 | 290 | /** |
| 291 | 291 | * link the class or method to the API or return the method name |
| 292 | - * |
|
| 292 | + * |
|
| 293 | 293 | * @param $class |
| 294 | 294 | * @param $method |
| 295 | 295 | * |