Completed
Push — master ( 419604...8f2503 )
by Doğa
02:39
created
Features/TinyMce/functions.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Flynt\Features\TinyMce;
4 4
 
5
-use Flynt\Utils\Feature;
6 5
 use Flynt\Utils\Asset;
7 6
 
8 7
 // Load TinyMCE Settings from config file
Please login to merge, or discard this patch.
Features/Acf/OptionPages.php 2 patches
Doc Comments   +13 added lines patch added patch discarded remove patch
@@ -246,6 +246,9 @@  discard block
 block discarded – undo
246 246
         });
247 247
     }
248 248
 
249
+    /**
250
+     * @param string $type
251
+     */
249 252
     protected static function createSubPage($type, $name)
250 253
     {
251 254
         $namespace = self::FILTER_NAMESPACES[$type];
@@ -263,6 +266,9 @@  discard block
 block discarded – undo
263 266
         }
264 267
     }
265 268
 
269
+    /**
270
+     * @param string $subPageName
271
+     */
266 272
     protected static function addOptionSubPage($optionCategoryName, $subPageName, $optionType, $fields)
267 273
     {
268 274
         $prettySubPageName = StringHelpers::splitCamelCase($subPageName);
@@ -291,6 +297,9 @@  discard block
 block discarded – undo
291 297
         );
292 298
     }
293 299
 
300
+    /**
301
+     * @param string $menuSlug
302
+     */
294 303
     protected static function addFieldGroupToSubPage($parentMenuSlug, $menuSlug, $prettySubPageName, $fields)
295 304
     {
296 305
         $fieldGroup = ACFComposer\ResolveConfig::forFieldGroup(
@@ -314,6 +323,10 @@  discard block
 block discarded – undo
314 323
         acf_add_local_field_group($fieldGroup);
315 324
     }
316 325
 
326
+    /**
327
+     * @param string $optionCategory
328
+     * @param string $feature
329
+     */
317 330
     protected static function checkFeature($optionCategory, $feature)
318 331
     {
319 332
         if (array_key_exists($optionCategory, self::$optionCategories) && !Feature::isRegistered($feature)) {
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,6 @@
 block discarded – undo
13 13
 use Flynt\Features\AdminNotices\AdminNoticeManager;
14 14
 use Flynt\Features\CustomPostTypes\CustomPostTypeRegister;
15 15
 use Flynt\Utils\Feature;
16
-use Flynt\Utils\FileLoader;
17 16
 use Flynt\Utils\StringHelpers;
18 17
 
19 18
 class OptionPages
Please login to merge, or discard this patch.
Features/Acf/FieldLoader.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -66,6 +66,9 @@
 block discarded – undo
66 66
         self::addFilters('feature', $name, $filePath);
67 67
     }
68 68
 
69
+    /**
70
+     * @param string $category
71
+     */
69 72
     public static function addFilters($category, $name, $filePath)
70 73
     {
71 74
         if (false === $filePath || !file_exists($filePath)) {
Please login to merge, or discard this patch.
lib/Utils/Asset.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -75,6 +75,10 @@  discard block
 block discarded – undo
75 75
         return self::add('enqueue', $options);
76 76
     }
77 77
 
78
+    /**
79
+     * @param string $returnType
80
+     * @param string $asset
81
+     */
78 82
     protected static function get($returnType, $asset)
79 83
     {
80 84
         $distPath = get_template_directory() . '/dist';
@@ -104,6 +108,9 @@  discard block
 block discarded – undo
104 108
         return false;
105 109
     }
106 110
 
111
+    /**
112
+     * @param string $funcType
113
+     */
107 114
     protected static function add($funcType, $options)
108 115
     {
109 116
         $options = array_merge(self::DEFAULT_OPTIONS, $options);
Please login to merge, or discard this patch.