Completed
Branch master (4ee9e5)
by MoshiMoshi
10:46
created
Tests/ConfigCache/Locale/Loader/ArrayLoaderTest.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -86,6 +86,9 @@  discard block
 block discarded – undo
86 86
         $this->assertSame('walkByLocaleInternal', $method->invoke($loader));
87 87
     }
88 88
 
89
+    /**
90
+     * @param string $name
91
+     */
89 92
     protected function createMock($name, array $methods = null)
90 93
     {
91 94
         $mock = $this->getMockBuilder($name)
@@ -97,6 +100,10 @@  discard block
 block discarded – undo
97 100
         return $mock;
98 101
     }
99 102
 
103
+    /**
104
+     * @param string $name
105
+     * @param string $value
106
+     */
100 107
     protected function setProperty($instance, $name, $value)
101 108
     {
102 109
         $property = new \ReflectionProperty($instance, $name);
Please login to merge, or discard this patch.
Tests/ConfigCache/Util/ArrayAccessTest.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -145,6 +145,10 @@
 block discarded – undo
145 145
         $this->assertEquals(new ArrayAccess($parameters), ArrayAccess::create($parameters));
146 146
     }
147 147
 
148
+    /**
149
+     * @param ArrayAccess $instance
150
+     * @param string $name
151
+     */
148 152
     protected function getProperty($instance, $name)
149 153
     {
150 154
         $property = new \ReflectionProperty($instance, $name);
Please login to merge, or discard this patch.