Completed
Pull Request — master (#23)
by Erin
03:28
created
src/Interfaces/Assert.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,6 @@
 block discarded – undo
45 45
     protected $assertion;
46 46
 
47 47
     /**
48
-     * @param ResponderInterface $responder
49 48
      */
50 49
     public function __construct(Assertion $assertion = null)
51 50
     {
Please login to merge, or discard this patch.
src/Interfaces/Assert/ObjectAssertTrait.php 1 patch
Doc Comments   -3 removed lines patch added patch discarded remove patch
@@ -38,7 +38,6 @@  discard block
 block discarded – undo
38 38
     /**
39 39
      * Perform a property assertion.
40 40
      *
41
-     * @param array|object $actual
42 41
      * @param string $property
43 42
      * @param string $message
44 43
      */
@@ -51,7 +50,6 @@  discard block
 block discarded – undo
51 50
     /**
52 51
      * Perform a negated property assertion.
53 52
      *
54
-     * @param array|object $actual
55 53
      * @param string $property
56 54
      * @param string $message
57 55
      */
@@ -77,7 +75,6 @@  discard block
 block discarded – undo
77 75
     /**
78 76
      * Perform a negated deep property assertion.
79 77
      *
80
-     * @param array|object $actual
81 78
      * @param string $property
82 79
      * @param string $message
83 80
      */
Please login to merge, or discard this patch.
src/Interfaces/Assert/TypeAssertTrait.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -38,7 +38,6 @@  discard block
 block discarded – undo
38 38
     /**
39 39
      * Perform a true assertion.
40 40
      *
41
-     * @param mixed $actual
42 41
      * @param string $message
43 42
      */
44 43
     public function isTrue($value, $message = "")
@@ -74,7 +73,6 @@  discard block
 block discarded – undo
74 73
     /**
75 74
      * Perform a negated null assertion.
76 75
      *
77
-     * @param mixed $actual
78 76
      * @param string $message
79 77
      */
80 78
     public function isNotNull($value, $message = "")
Please login to merge, or discard this patch.
src/Matcher/ExceptionMatcher.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,6 @@
 block discarded – undo
35 35
     protected $messageTemplate;
36 36
 
37 37
     /**
38
-     * @param callable $expected
39 38
      */
40 39
     public function __construct($exceptionType)
41 40
     {
Please login to merge, or discard this patch.
src/Matcher/KeysMatcher.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
      * Assert that the actual value is an array or object with the expected keys.
46 46
      *
47 47
      * @param $actual
48
-     * @return mixed
48
+     * @return boolean
49 49
      */
50 50
     protected function doMatch($actual)
51 51
     {
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
      * if the expected keys are included in the object or array.
103 103
      *
104 104
      * @param array $actual
105
-     * @return true
105
+     * @return boolean
106 106
      */
107 107
     protected function matchInclusion($actual)
108 108
     {
Please login to merge, or discard this patch.
src/ObjectPath/ObjectPath.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@
 block discarded – undo
77 77
      * Breaks a path expression into an array used
78 78
      * for navigating a path.
79 79
      *
80
-     * @param $path
80
+     * @param string $path
81 81
      * @return array
82 82
      */
83 83
     public function getPathParts($path)
Please login to merge, or discard this patch.