Fix array property documentations
authorMatthias Schmidt <gravatronics@live.com>
Sat, 7 May 2016 13:47:30 +0000 (15:47 +0200)
committerMatthias Schmidt <gravatronics@live.com>
Sat, 7 May 2016 13:47:30 +0000 (15:47 +0200)
wcfsetup/install/files/lib/acp/form/StyleAddForm.class.php
wcfsetup/install/files/lib/data/object/type/ObjectTypeCache.class.php
wcfsetup/install/files/lib/util/HTTPRequest.class.php
wcfsetup/install/files/lib/util/StringStack.class.php

index ce21a2b76ba868c711c675c1d9e16a2fe5823e83..437b5c3caa479ee22bda943ad8a5e7aa69e81c47 100644 (file)
@@ -81,7 +81,7 @@ class StyleAddForm extends AbstractForm {
        
        /**
         * list of color variables
-        * @var string[]
+        * @var string[][]
         */
        public $colors = [];
        
index 27c057169265f534e78e3b2c28a8974b0c3643e6..59ca7255cfdb38342f2105eb6f1ea2e0fec86528 100644 (file)
@@ -23,7 +23,7 @@ class ObjectTypeCache extends SingletonFactory {
        
        /**
         * object type definition ids grouped by category name
-        * @var integer[]
+        * @var integer[][]
         */
        protected $definitionsByCategory = array();
        
index fee77a5e0bbb72ed07c1d85749f48b416bb6b3b1..ff557ee0f22e226cc2cacae90121d564867640b7 100644 (file)
@@ -94,7 +94,7 @@ final class HTTPRequest {
        
        /**
         * request headers
-        * @var string[]
+        * @var string[][]
         */
        private $headers = array();
        
index 00ae7ffe63ad94e5800dfe471217aced0af80b90..60280cbe255e60a6c08646a72ecf245d723e6e4a 100644 (file)
@@ -20,7 +20,7 @@ final class StringStack {
        
        /**
         * local string stack
-        * @var string[]
+        * @var string[][]
         */
        protected static $stringStack = array();