Completed
Pull Request — master (#3)
by Guilh
02:22
created
src/collections/Definitions.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,6 @@
 block discarded – undo
57 57
      * Sets the field.
58 58
      * 
59 59
      * @param string name
60
-     * @param Schema $schame
61 60
      */
62 61
     public function set($name, Schema $schema)
63 62
     {
Please login to merge, or discard this patch.
src/collections/Responses.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -93,7 +93,6 @@
 block discarded – undo
93 93
     /**
94 94
      * Sets the response.
95 95
      * 
96
-     * @param Response $code
97 96
      */
98 97
     public function add(Response $response)
99 98
     {
Please login to merge, or discard this patch.
src/AbstractModel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
 
16 16
         // flatten array
17 17
         $fields = [];
18
-        array_walk_recursive($cols, function ($a) use (&$fields) { $fields[] = $a; });
18
+        array_walk_recursive($cols, function($a) use (&$fields) { $fields[] = $a; });
19 19
 
20 20
         $out = [];
21 21
         $refl = new \ReflectionClass(get_class($this));
Please login to merge, or discard this patch.
src/collections/Parameters.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
      */
58 58
     public function searchByName($name)
59 59
     {
60
-        return $this->parameters->search($name, function (Parameter $param, $name) {
60
+        return $this->parameters->search($name, function(Parameter $param, $name) {
61 61
             return $param->getName() == $name;
62 62
         });
63 63
     }
Please login to merge, or discard this patch.