Completed
Push — master ( a3fc91...eb0343 )
by Vladimir
02:52
created
src/PulseUpdate.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
      *
100 100
      * @return PulseUser
101 101
      */
102
-    public function getUser()
102
+    public function getUser ()
103 103
     {
104 104
         self::lazyLoad($this->user, "PulseUser");
105 105
 
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
      *
112 112
      * @return string
113 113
      */
114
-    public function getUrl()
114
+    public function getUrl ()
115 115
     {
116 116
         return $this->url;
117 117
     }
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
      *
122 122
      * @return string
123 123
      */
124
-    public function getId()
124
+    public function getId ()
125 125
     {
126 126
         return $this->id;
127 127
     }
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
      *
132 132
      * @return string
133 133
      */
134
-    public function getBody()
134
+    public function getBody ()
135 135
     {
136 136
         return $this->body;
137 137
     }
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
      *
142 142
      * @return string
143 143
      */
144
-    public function getBodyText()
144
+    public function getBodyText ()
145 145
     {
146 146
         return $this->body_text;
147 147
     }
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
      *
152 152
      * @return static[]
153 153
      */
154
-    public function getReplies()
154
+    public function getReplies ()
155 155
     {
156 156
         self::lazyArray($this->replies, "PulseUpdate");
157 157
 
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
      *
164 164
      * @return string
165 165
      */
166
-    public function getKind()
166
+    public function getKind ()
167 167
     {
168 168
         return $this->kind;
169 169
     }
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
      *
174 174
      * @return string
175 175
      */
176
-    public function getHasAssets()
176
+    public function getHasAssets ()
177 177
     {
178 178
         return $this->has_assets;
179 179
     }
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
      *
184 184
      * @return string
185 185
      */
186
-    public function getAssets()
186
+    public function getAssets ()
187 187
     {
188 188
         return $this->assets;
189 189
     }
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
      *
194 194
      * @return \DateTime
195 195
      */
196
-    public function getCreatedAt()
196
+    public function getCreatedAt ()
197 197
     {
198 198
         return $this->created_at;
199 199
     }
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
      *
204 204
      * @return \DateTime
205 205
      */
206
-    public function getUpdatedAt()
206
+    public function getUpdatedAt ()
207 207
     {
208 208
         return $this->updated_at;
209 209
     }
Please login to merge, or discard this patch.