Completed
Push — master ( a0701d...6d2756 )
by Jacob
02:22
created
tests/unit/DisplayTest.php 2 patches
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -228,6 +228,10 @@  discard block
 block discarded – undo
228 228
         );
229 229
     }
230 230
 
231
+    /**
232
+     * @param Console $class
233
+     * @param string $property
234
+     */
231 235
     protected function setInternalProperty($class, $property, $value)
232 236
     {
233 237
         $reflectedClass = new ReflectionClass(get_class($class));
@@ -236,6 +240,10 @@  discard block
 block discarded – undo
236 240
         $reflectedProperty->setValue($class, $value);
237 241
     }
238 242
 
243
+    /**
244
+     * @param Display $class
245
+     * @param string $method
246
+     */
239 247
     protected function getAccessibleMethod($class, $method)
240 248
     {
241 249
         $reflectedClass = new ReflectionClass(get_class($class));
Please login to merge, or discard this 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 Particletree\Pqp;
4 4
 
5
-use Exception;
6 5
 use PHPUnit_Framework_TestCase;
7 6
 use ReflectionClass;
8 7
 
Please login to merge, or discard this patch.