| @@ -34,7 +34,7 @@ | ||
| 34 | 34 | */ | 
| 35 | 35 | public function __construct() | 
| 36 | 36 |      { | 
| 37 | -        add_action('phpmailer_init', [$this, 'mailer']); | |
| 37 | +        add_action('phpmailer_init', [ $this, 'mailer' ]); | |
| 38 | 38 | } | 
| 39 | 39 | |
| 40 | 40 | /** | 
| @@ -27,9 +27,9 @@ | ||
| 27 | 27 | */ | 
| 28 | 28 | public function __construct($id, $name, $description) | 
| 29 | 29 |      { | 
| 30 | - parent::__construct($id, $name, ['description' => $description]); | |
| 30 | + parent::__construct($id, $name, [ 'description' => $description ]); | |
| 31 | 31 | |
| 32 | -        add_action('widgets_init', [$this, 'register']); | |
| 32 | +        add_action('widgets_init', [ $this, 'register' ]); | |
| 33 | 33 | } | 
| 34 | 34 | |
| 35 | 35 | /** | 
| @@ -24,6 +24,6 @@ | ||
| 24 | 24 | */ | 
| 25 | 25 | public function __construct() | 
| 26 | 26 |      { | 
| 27 | -        add_action('widgets_init', [$this, 'widgetArea']); | |
| 27 | +        add_action('widgets_init', [ $this, 'widgetArea' ]); | |
| 28 | 28 | } | 
| 29 | 29 | } | 
| @@ -26,6 +26,6 @@ | ||
| 26 | 26 |      { | 
| 27 | 27 | $this->rewriteRules(); | 
| 28 | 28 | $this->rewriteTags(); | 
| 29 | -        add_action('template_include', [$this, 'templateInclude']); | |
| 29 | +        add_action('template_include', [ $this, 'templateInclude' ]); | |
| 30 | 30 | } | 
| 31 | 31 | } | 
| @@ -31,7 +31,7 @@ | ||
| 31 | 31 | */ | 
| 32 | 32 | public function __construct() | 
| 33 | 33 |      { | 
| 34 | -        add_action('wp_ajax_nopriv_' . $this->action, [$this, 'ajax']); | |
| 35 | -        add_action('wp_ajax_' . $this->action, [$this, 'ajax']); | |
| 34 | +        add_action('wp_ajax_nopriv_' . $this->action, [ $this, 'ajax' ]); | |
| 35 | +        add_action('wp_ajax_' . $this->action, [ $this, 'ajax' ]); | |
| 36 | 36 | } | 
| 37 | 37 | } | 
| @@ -32,7 +32,7 @@ | ||
| 32 | 32 | */ | 
| 33 | 33 | public function templates($templates) | 
| 34 | 34 |      { | 
| 35 | - return array_merge($templates, ['dummy-template' => 'DummyTemplate']); | |
| 35 | + return array_merge($templates, [ 'dummy-template' => 'DummyTemplate' ]); | |
| 36 | 36 | } | 
| 37 | 37 | |
| 38 | 38 | /** | 
| @@ -26,14 +26,14 @@ discard block | ||
| 26 | 26 | public function __construct() | 
| 27 | 27 |      { | 
| 28 | 28 |          if (true === WP_DEBUG) { | 
| 29 | -            add_action('wp_enqueue_scripts', [$this, 'developmentAssets']); | |
| 29 | +            add_action('wp_enqueue_scripts', [ $this, 'developmentAssets' ]); | |
| 30 | 30 |          } else { | 
| 31 | -            add_action('wp_enqueue_scripts', [$this, 'productionAssets']); | |
| 31 | +            add_action('wp_enqueue_scripts', [ $this, 'productionAssets' ]); | |
| 32 | 32 | } | 
| 33 | -        add_action('admin_enqueue_scripts', [$this, 'adminAssets']); | |
| 33 | +        add_action('admin_enqueue_scripts', [ $this, 'adminAssets' ]); | |
| 34 | 34 | |
| 35 | 35 | // @deprecated since version 1.5, will be removed in 2.0. Implement productionAssets and developmentAssets instead. | 
| 36 | -        add_action('wp_enqueue_scripts', [$this, 'assets']); | |
| 36 | +        add_action('wp_enqueue_scripts', [ $this, 'assets' ]); | |
| 37 | 37 | } | 
| 38 | 38 | |
| 39 | 39 | /** | 
| @@ -73,7 +73,7 @@ discard block | ||
| 73 | 73 | protected function addScript( | 
| 74 | 74 | $name, | 
| 75 | 75 | $from = AssetsInterface::ASSETS_JS, | 
| 76 | - array $dependencies = ['jquery'], | |
| 76 | + array $dependencies = [ 'jquery' ], | |
| 77 | 77 | $version = '1.0.0', | 
| 78 | 78 | $inFooter = true, | 
| 79 | 79 | $ajaxUrl = null | 
| @@ -102,7 +102,7 @@ discard block | ||
| 102 | 102 | protected function addStylesheet( | 
| 103 | 103 | $name, | 
| 104 | 104 | $from = AssetsInterface::CSS, | 
| 105 | - array $dependencies = [], | |
| 105 | + array $dependencies = [ ], | |
| 106 | 106 | $version = '1.0.0', | 
| 107 | 107 | $media = 'all' | 
| 108 | 108 |      ) { | 
| @@ -134,7 +134,7 @@ discard block | ||
| 134 | 134 | protected function registerAjaxUrls($name, $ajaxUrl) | 
| 135 | 135 |      { | 
| 136 | 136 |          if (false === is_array($ajaxUrl)) { | 
| 137 | - $ajaxUrl = [$ajaxUrl]; | |
| 137 | + $ajaxUrl = [ $ajaxUrl ]; | |
| 138 | 138 | } | 
| 139 | 139 |          foreach ($ajaxUrl as $url) { | 
| 140 | 140 | wp_localize_script($name, $url, [ | 
| @@ -37,11 +37,11 @@ discard block | ||
| 37 | 37 |          } elseif (isset($updatePostId)) { | 
| 38 | 38 | $postId = absint($updatePostId); | 
| 39 | 39 |          } else { | 
| 40 | -            add_action('add_meta_boxes', [$this, 'addMetaBox']); | |
| 40 | +            add_action('add_meta_boxes', [ $this, 'addMetaBox' ]); | |
| 41 | 41 | } | 
| 42 | 42 |          if (false === isset($postId) || $this->name === get_post_meta($postId, '_wp_page_template', true)) { | 
| 43 | -            add_action('admin_init', [$this, 'addScreenAttributes']); | |
| 44 | -            add_action('admin_init', [$this, 'removeScreenAttributes']); | |
| 43 | +            add_action('admin_init', [ $this, 'addScreenAttributes' ]); | |
| 44 | +            add_action('admin_init', [ $this, 'removeScreenAttributes' ]); | |
| 45 | 45 | } | 
| 46 | 46 | } | 
| 47 | 47 | |
| @@ -84,7 +84,7 @@ discard block | ||
| 84 | 84 | add_meta_box( | 
| 85 | 85 | 'lin3s-id-default-meta-box', | 
| 86 | 86 | 'LIN3S INFO', | 
| 87 | - [$this, 'metaBox'], | |
| 87 | + [ $this, 'metaBox' ], | |
| 88 | 88 | 'page' | 
| 89 | 89 | ); | 
| 90 | 90 | } | 
| @@ -27,8 +27,8 @@ | ||
| 27 | 27 |      { | 
| 28 | 28 | parent::__construct(); | 
| 29 | 29 | |
| 30 | -        add_action('admin_init', [$this, 'addScreenAttributes']); | |
| 31 | -        add_action('admin_init', [$this, 'removeScreenAttributes']); | |
| 30 | +        add_action('admin_init', [ $this, 'addScreenAttributes' ]); | |
| 31 | +        add_action('admin_init', [ $this, 'removeScreenAttributes' ]); | |
| 32 | 32 | } | 
| 33 | 33 | |
| 34 | 34 | /** |