Completed
Push — master ( 76baec...4159e1 )
by Kacper
03:23
created
Utils/ObservableCollection.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
     public function offsetSet($index, $value)
72 72
     {
73 73
         parent::offsetSet($index, $value);
74
-        $this->emit('set', [ $value, $index ]);
74
+        $this->emit('set', [$value, $index]);
75 75
     }
76 76
 
77 77
     /**
@@ -85,11 +85,11 @@  discard block
 block discarded – undo
85 85
      */
86 86
     public function offsetUnset($index)
87 87
     {
88
-        $this->emit('remove', [ $this[$index], $index ]);
88
+        $this->emit('remove', [$this[$index], $index]);
89 89
 
90 90
         parent::offsetUnset($index);
91 91
 
92
-        if(!count($this)) {
92
+        if (!count($this)) {
93 93
             $this->emit('empty');
94 94
         }
95 95
     }
Please login to merge, or discard this patch.
Xml/XmlStream.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -91,35 +91,35 @@  discard block
 block discarded – undo
91 91
         parent::__construct($transport);
92 92
         $this->setParser($parser);
93 93
 
94
-        $this->on('close', function () { $this->_isOpened = false; });
95
-        $this->on('element', function (Error $element) {
94
+        $this->on('close', function() { $this->_isOpened = false; });
95
+        $this->on('element', function(Error $element) {
96 96
             $this->handleError($element);
97 97
         }, with\instance(Error::class));
98 98
     }
99 99
 
100 100
     public function setParser(XmlParser $parser)
101 101
     {
102
-        if($this->_parser) {
103
-            $this->removeListener('data', [ $this->_parser, 'parse' ]);
102
+        if ($this->_parser) {
103
+            $this->removeListener('data', [$this->_parser, 'parse']);
104 104
         }
105 105
 
106 106
         $this->_parser = $parser;
107 107
 
108
-        $this->_parser->on('parse.begin', function (XmlElement $stream) {
108
+        $this->_parser->on('parse.begin', function(XmlElement $stream) {
109 109
             $this->_inbound = $stream;
110
-            $this->emit('stream.open', [ $stream ]);
110
+            $this->emit('stream.open', [$stream]);
111 111
         }, with\argument(1, with\equals(0)));
112 112
 
113
-        $this->_parser->on('parse.end', function (XmlElement $stream) {
114
-            $this->emit('stream.close', [ $stream ]);
113
+        $this->_parser->on('parse.end', function(XmlElement $stream) {
114
+            $this->emit('stream.close', [$stream]);
115 115
             $this->_inbound = null;
116 116
         }, with\argument(1, with\equals(0)));
117 117
 
118
-        $this->_parser->on('element', function (...$arguments) {
118
+        $this->_parser->on('element', function(...$arguments) {
119 119
             $this->emit('element', $arguments);
120 120
         });
121 121
 
122
-        $this->on('data', [ $this->_parser, 'parse' ]);
122
+        $this->on('data', [$this->_parser, 'parse']);
123 123
     }
124 124
 
125 125
     /**
@@ -130,11 +130,11 @@  discard block
 block discarded – undo
130 130
      */
131 131
     public function write($data)
132 132
     {
133
-        if($data instanceof XmlElement) {
133
+        if ($data instanceof XmlElement) {
134 134
             $this->_outbound->append($data);
135 135
         }
136 136
 
137
-        $this->emit('send.'.($data instanceof XmlElement ? 'element' : 'text'), [ $data ]);
137
+        $this->emit('send.' . ($data instanceof XmlElement ? 'element' : 'text'), [$data]);
138 138
 
139 139
         return parent::write($data);
140 140
     }
@@ -195,7 +195,7 @@  discard block
 block discarded – undo
195 195
 
196 196
     private function handleError(Error $element)
197 197
     {
198
-        if ($this->emit('stream.error', [ $element ])) {
198
+        if ($this->emit('stream.error', [$element])) {
199 199
             throw new StreamErrorException($element);
200 200
         }
201 201
 
Please login to merge, or discard this patch.