Completed
Push — master ( 5ff9b5...2ec06b )
by Andrzej
02:41
created
src/Definition/Source/AbstractDefinitionSource.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
      *
27 27
      * @param array $definitions
28 28
      */
29
-    public function __construct(array $definitions)
29
+    public function __construct (array $definitions)
30 30
     {
31 31
         $this->definitions = $definitions;
32 32
     }
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
      *
37 37
      * @param array $definitions
38 38
      */
39
-    public function add(array $definitions)
39
+    public function add (array $definitions)
40 40
     {
41 41
         $this->definitions = array_merge($this->definitions, $definitions);
42 42
     }
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
      *
50 50
      * @return bool
51 51
      */
52
-    public function has($name)
52
+    public function has ($name)
53 53
     {
54 54
         if (!is_string($name)) {
55 55
             return false;
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
      * @param $name
65 65
      * @param $value
66 66
      */
67
-    public function set($name, $value)
67
+    public function set ($name, $value)
68 68
     {
69 69
         $this->definitions[$name] = $value;
70 70
     }
Please login to merge, or discard this patch.