浏览代码

Merge pull request #11228 from cakephp/dereuromark-patch-1

Fix up doc blocks
Mark Story 8 年之前
父节点
当前提交
8c41449269
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      src/Console/Arguments.php

+ 3 - 3
src/Console/Arguments.php

@@ -23,7 +23,7 @@ class Arguments
     /**
      * Positional argument name map
      *
-     * @var array
+     * @var string[]
      */
     protected $argNames;
 
@@ -37,7 +37,7 @@ class Arguments
     /**
      * Named options
      *
-     * @var string[]
+     * @var array
      */
     protected $options;
 
@@ -59,7 +59,7 @@ class Arguments
     /**
      * Get all positional arguments.
      *
-     * @return array
+     * @return string[]
      */
     public function getArguments()
     {