Completed
Push — master ( 5797b2...cfde1e )
by Doğa
02:35
created
Features/Acf/FlexibleContentToggle.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
     {
15 15
         if (is_admin()) {
16 16
             // adds buttons to collapse/expand components
17
-            add_filter('acf/get_field_label', function ($label, $field) {
17
+            add_filter('acf/get_field_label', function($label, $field) {
18 18
                 if ($field['type'] === 'flexible_content') {
19 19
                     $label .= '<span class="flexible-content-controls">';
20 20
                     $label .= '<a class="acf-icon small -collapse collapse-all" title="collapse all"></a>';
Please login to merge, or discard this patch.
Features/CustomPostTypes/functions.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
 use Flynt\Features\CustomPostTypes\CustomPostTypeRegister;
10 10
 
11 11
 // NOTE: this needs to happen on init to allow taxonomies to register
12
-add_action('init', function () {
12
+add_action('init', function() {
13 13
     $featureOptions = Feature::getOption('flynt-custom-post-types', 0);
14 14
     $dir = isset($featureOptions['dir']) ? $featureOptions['dir'] : null;
15 15
     $fileName = isset($featureOptions['fileName']) ? $featureOptions['fileName'] : null;
Please login to merge, or discard this patch.
Features/CustomPostTypes/CustomPostTypeRegister.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
 
52 52
     protected static function cleanConfig($config)
53 53
     {
54
-        $cleanConfig = array_map(function ($value) {
54
+        $cleanConfig = array_map(function($value) {
55 55
             if (is_array($value)) {
56 56
                 return self::cleanConfig($value);
57 57
             }
@@ -60,14 +60,14 @@  discard block
 block discarded – undo
60 60
         }, $config);
61 61
 
62 62
         // remove null values or empty arrays
63
-        return array_filter($cleanConfig, function ($value) {
63
+        return array_filter($cleanConfig, function($value) {
64 64
             return !(is_null($value) || (is_array($value) && empty($value)));
65 65
         });
66 66
     }
67 67
 
68 68
     protected static function getConfigs($dir)
69 69
     {
70
-        $configs = FileLoader::iterateDir($dir, function ($file) {
70
+        $configs = FileLoader::iterateDir($dir, function($file) {
71 71
             if ($file->isDir()) {
72 72
                 $configPath = $file->getPathname() . '/' . self::$fileName;
73 73
 
Please login to merge, or discard this patch.
Features/MimeTypes/functions.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace Flynt\Features\MimeTypes;
4 4
 
5
-add_filter('upload_mimes', function ($mimes) {
5
+add_filter('upload_mimes', function($mimes) {
6 6
     $mimes['svg'] = 'image/svg+xml';
7 7
     return $mimes;
8 8
 });
Please login to merge, or discard this patch.
Features/AdminNotices/AdminNoticeManager.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
      * clone
29 29
      *
30 30
      * Prevent cloning with 'protected' keyword
31
-    **/
31
+     **/
32 32
     protected function __clone()
33 33
     {
34 34
     }
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
      * constructor
38 38
      *
39 39
      * Prevent instantiation with 'protected' keyword
40
-    **/
40
+     **/
41 41
     protected function __construct()
42 42
     {
43 43
     }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
         . "<p><strong>{$options['title']}</strong></p>"
69 69
         . $msg . '</div>';
70 70
 
71
-        add_action('admin_notices', function () use ($msg) {
71
+        add_action('admin_notices', function() use ($msg) {
72 72
             echo $msg;
73 73
         });
74 74
 
Please login to merge, or discard this patch.
Features/Templates/functions.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,6 +3,6 @@
 block discarded – undo
3 3
 namespace Flynt\Features\Templates;
4 4
 
5 5
 // Set Config Path
6
-add_filter('Flynt/configPath', function ($filePath, $fileName) {
6
+add_filter('Flynt/configPath', function($filePath, $fileName) {
7 7
     return get_template_directory() . '/config/templates/' . $fileName;
8 8
 }, 10, 2);
Please login to merge, or discard this patch.
Features/Components/Component.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
         }
17 17
 
18 18
         // collect script dependencies
19
-        $scriptDeps = array_reduce($dependencies, function ($list, $dependency) {
19
+        $scriptDeps = array_reduce($dependencies, function($list, $dependency) {
20 20
             if ($dependency['type'] === 'script') {
21 21
                 array_push($list, $dependency['name']);
22 22
             }
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
         }
36 36
 
37 37
         // collect style dependencies
38
-        $styleDeps = array_reduce($dependencies, function ($list, $dependency) {
38
+        $styleDeps = array_reduce($dependencies, function($list, $dependency) {
39 39
             if ($dependency['type'] === 'style') {
40 40
                 array_push($list, $dependency['name']);
41 41
             }
Please login to merge, or discard this patch.
Features/RemoveEditor/functions.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace Flynt\Features\RemoveEditor;
4 4
 
5
-add_action('init', function () {
5
+add_action('init', function() {
6 6
     remove_post_type_support('page', 'editor');
7 7
     remove_post_type_support('post', 'editor');
8 8
 });
Please login to merge, or discard this patch.
Features/Navigation/functions.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace Flynt\Features\Navigation;
4 4
 
5
-add_action('init', function () {
5
+add_action('init', function() {
6 6
     register_nav_menus([
7 7
         'navigation_main' => __('Navigation Main', 'flynt-starter-theme'),
8 8
         'navigation_footer' => __('Navigation Footer', 'flynt-starter-theme')
Please login to merge, or discard this patch.