Completed
Pull Request — master (#50)
by
unknown
11:10
created
Standards/Squiz/Sniffs/ControlStructures/InlineIfDeclarationSniff.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
     /**
45 45
      * Returns an array of tokens this test wants to listen for.
46 46
      *
47
-     * @return array
47
+     * @return string[]
48 48
      */
49 49
     public function register()
50 50
     {
Please login to merge, or discard this patch.
CodeSniffer/Standards/Squiz/Sniffs/CSS/MissingColonSniff.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
     /**
56 56
      * Returns the token types that this sniff is interested in.
57 57
      *
58
-     * @return int[]
58
+     * @return string[]
59 59
      */
60 60
     public function register()
61 61
     {
Please login to merge, or discard this patch.
Standards/Squiz/Sniffs/Objects/DisallowObjectStringIndexSniff.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
     /**
45 45
      * Returns an array of tokens this test wants to listen for.
46 46
      *
47
-     * @return array
47
+     * @return string[]
48 48
      */
49 49
     public function register()
50 50
     {
Please login to merge, or discard this patch.
CodeSniffer/Standards/Squiz/Sniffs/Objects/ObjectMemberCommaSniff.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
     /**
45 45
      * Returns an array of tokens this test wants to listen for.
46 46
      *
47
-     * @return array
47
+     * @return string[]
48 48
      */
49 49
     public function register()
50 50
     {
Please login to merge, or discard this patch.
php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/EmbeddedPhpSniff.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
     /**
42 42
      * Returns an array of tokens this test wants to listen for.
43 43
      *
44
-     * @return array
44
+     * @return integer[]
45 45
      */
46 46
     public function register()
47 47
     {
Please login to merge, or discard this patch.
CodeSniffer/Standards/Squiz/Sniffs/Strings/EchoedStringsSniff.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
     /**
42 42
      * Returns an array of tokens this test wants to listen for.
43 43
      *
44
-     * @return array
44
+     * @return integer[]
45 45
      */
46 46
     public function register()
47 47
     {
Please login to merge, or discard this patch.
Standards/Squiz/Sniffs/WhiteSpace/ControlStructureSpacingSniff.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
     /**
42 42
      * Returns an array of tokens this test wants to listen for.
43 43
      *
44
-     * @return array
44
+     * @return integer[]
45 45
      */
46 46
     public function register()
47 47
     {
Please login to merge, or discard this patch.
vendor/symfony/config/Definition/Builder/ArrayNodeDefinition.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -23,6 +23,7 @@
 block discarded – undo
23 23
 {
24 24
     /**
25 25
      * {@inheritdoc}
26
+     * @param string $name
26 27
      */
27 28
     public function __construct($name, NodeParentInterface $parent = null)
28 29
     {
Please login to merge, or discard this patch.
vendor/symfony/console/Tests/Helper/ProgressBarTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -173,6 +173,9 @@
 block discarded – undo
173 173
         return new StreamOutput(fopen('php://memory', 'r+', false), $verbosity, $decorated);
174 174
     }
175 175
 
176
+    /**
177
+     * @param string $expected
178
+     */
176 179
     protected function generateOutput($expected)
177 180
     {
178 181
         $count = substr_count($expected, "\n");
Please login to merge, or discard this patch.