Completed
Push — master ( 28d7a6...e9899e )
by Vladimir
02:23
created
src/Objects/PulseColumnValue.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
     protected $pulse_id;
19 19
     protected $column_value;
20 20
 
21
-    public function __construct($array)
21
+    public function __construct ($array)
22 22
     {
23 23
         $this->arrayConstructionOnly = true;
24 24
 
@@ -45,6 +45,6 @@  discard block
 block discarded – undo
45 45
         throw new InvalidObjectException("'$type' is an unsupported column type to modify.");
46 46
     }
47 47
 
48
-    abstract public function getValue();
49
-    abstract public function updateValue($updateValue);
48
+    abstract public function getValue ();
49
+    abstract public function updateValue ($updateValue);
50 50
 }
51 51
\ No newline at end of file
Please login to merge, or discard this patch.
src/Utilities/ArrayUtilities.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
      *
52 52
      * @return int|mixed|string
53 53
      */
54
-    public static function array_search_column($array, $column, $search)
54
+    public static function array_search_column ($array, $column, $search)
55 55
     {
56 56
         if (function_exists('array_column'))
57 57
         {
Please login to merge, or discard this patch.
tests/utilities/AuthenticatedClient.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
         return (isset($this->apiToken));
26 26
     }
27 27
 
28
-    public function getApiToken()
28
+    public function getApiToken ()
29 29
     {
30 30
         return $this->apiToken;
31 31
     }
Please login to merge, or discard this patch.
src/Pulse.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
      *
137 137
      * @return string
138 138
      */
139
-    public function getUrl()
139
+    public function getUrl ()
140 140
     {
141 141
         return $this->url;
142 142
     }
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
      *
147 147
      * @return int
148 148
      */
149
-    public function getId()
149
+    public function getId ()
150 150
     {
151 151
         return $this->id;
152 152
     }
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
      *
157 157
      * @return string
158 158
      */
159
-    public function getName()
159
+    public function getName ()
160 160
     {
161 161
         return $this->name;
162 162
     }
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
      *
167 167
      * @return int
168 168
      */
169
-    public function getUpdatesCount()
169
+    public function getUpdatesCount ()
170 170
     {
171 171
         return $this->updates_count;
172 172
     }
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
      *
177 177
      * @return int
178 178
      */
179
-    public function getBoardId()
179
+    public function getBoardId ()
180 180
     {
181 181
         return $this->board_id;
182 182
     }
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
      *
187 187
      * @return \DateTime
188 188
      */
189
-    public function getCreatedAt()
189
+    public function getCreatedAt ()
190 190
     {
191 191
         return $this->created_at;
192 192
     }
@@ -196,7 +196,7 @@  discard block
 block discarded – undo
196 196
      *
197 197
      * @return \DateTime
198 198
      */
199
-    public function getUpdatedAt()
199
+    public function getUpdatedAt ()
200 200
     {
201 201
         return $this->updated_at;
202 202
     }
@@ -214,7 +214,7 @@  discard block
 block discarded – undo
214 214
      * @since 0.1.0
215 215
      * @return string
216 216
      */
217
-    public function getGroupId($forceFetch = false)
217
+    public function getGroupId ($forceFetch = false)
218 218
     {
219 219
         if (empty($this->group_id) || $forceFetch)
220 220
         {
Please login to merge, or discard this patch.
src/Objects/ApiObject.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -48,14 +48,14 @@  discard block
 block discarded – undo
48 48
      *
49 49
      * @internal
50 50
      */
51
-    const API_VERSION  = "v1";
51
+    const API_VERSION = "v1";
52 52
 
53 53
     /**
54 54
      * The suffix that is appended to the URL to access functionality for certain objects
55 55
      *
56 56
      * @internal
57 57
      */
58
-    const API_PREFIX   = "";
58
+    const API_PREFIX = "";
59 59
 
60 60
     /**
61 61
      * The API key used to make the URL calls
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
      */
138 138
     protected function assignResults ()
139 139
     {
140
-        foreach($this->jsonResponse as $key => $val)
140
+        foreach ($this->jsonResponse as $key => $val)
141 141
         {
142 142
             if (property_exists(get_called_class(), $key))
143 143
             {
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
     /**
163 163
      * Overload this function if any class variables need to be initialized to a default value
164 164
      */
165
-    protected function initializeValues() {}
165
+    protected function initializeValues () {}
166 166
 
167 167
     /**
168 168
      * Inject data into the array that will be mapped into individual instance variables. This function must be called
Please login to merge, or discard this patch.
src/PulseUser.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
      *
113 113
      * @return string
114 114
      */
115
-    public function getUrl()
115
+    public function getUrl ()
116 116
     {
117 117
         return $this->url;
118 118
     }
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
      *
123 123
      * @return int
124 124
      */
125
-    public function getId()
125
+    public function getId ()
126 126
     {
127 127
         return $this->id;
128 128
     }
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
      *
133 133
      * @return string
134 134
      */
135
-    public function getName()
135
+    public function getName ()
136 136
     {
137 137
         return $this->name;
138 138
     }
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
      *
143 143
      * @return string
144 144
      */
145
-    public function getEmail()
145
+    public function getEmail ()
146 146
     {
147 147
         return $this->email;
148 148
     }
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
      *
153 153
      * @return string
154 154
      */
155
-    public function getPhotoUrl()
155
+    public function getPhotoUrl ()
156 156
     {
157 157
         return $this->photo_url;
158 158
     }
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
      *
163 163
      * @return string
164 164
      */
165
-    public function getTitle()
165
+    public function getTitle ()
166 166
     {
167 167
         return $this->title;
168 168
     }
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
      *
173 173
      * @return string
174 174
      */
175
-    public function getPosition()
175
+    public function getPosition ()
176 176
     {
177 177
         return $this->position;
178 178
     }
@@ -182,7 +182,7 @@  discard block
 block discarded – undo
182 182
      *
183 183
      * @return string
184 184
      */
185
-    public function getPhone()
185
+    public function getPhone ()
186 186
     {
187 187
         return $this->phone;
188 188
     }
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
      *
193 193
      * @return string
194 194
      */
195
-    public function getLocation()
195
+    public function getLocation ()
196 196
     {
197 197
         return $this->location;
198 198
     }
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
      *
203 203
      * @return string
204 204
      */
205
-    public function getStatus()
205
+    public function getStatus ()
206 206
     {
207 207
         return $this->status;
208 208
     }
@@ -212,7 +212,7 @@  discard block
 block discarded – undo
212 212
      *
213 213
      * @return string
214 214
      */
215
-    public function getBirthday()
215
+    public function getBirthday ()
216 216
     {
217 217
         return $this->birthday;
218 218
     }
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
      *
223 223
      * @return bool
224 224
      */
225
-    public function getIsGuest()
225
+    public function getIsGuest ()
226 226
     {
227 227
         return $this->is_guest;
228 228
     }
@@ -232,7 +232,7 @@  discard block
 block discarded – undo
232 232
      *
233 233
      * @return string[]
234 234
      */
235
-    public function getSkills()
235
+    public function getSkills ()
236 236
     {
237 237
         return $this->skills;
238 238
     }
@@ -242,7 +242,7 @@  discard block
 block discarded – undo
242 242
      *
243 243
      * @return \DateTime
244 244
      */
245
-    public function getCreatedAt()
245
+    public function getCreatedAt ()
246 246
     {
247 247
         return $this->created_at;
248 248
     }
@@ -252,7 +252,7 @@  discard block
 block discarded – undo
252 252
      *
253 253
      * @return \DateTime
254 254
      */
255
-    public function getUpdatedAt()
255
+    public function getUpdatedAt ()
256 256
     {
257 257
         return $this->updated_at;
258 258
     }
Please login to merge, or discard this patch.
src/PulseNote.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
      *
71 71
      * @return string
72 72
      */
73
-    public function getType()
73
+    public function getType ()
74 74
     {
75 75
         return $this->type;
76 76
     }
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
      *
81 81
      * @return string
82 82
      */
83
-    public function getId()
83
+    public function getId ()
84 84
     {
85 85
         return $this->id;
86 86
     }
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
      *
91 91
      * @return string
92 92
      */
93
-    public function getTitle()
93
+    public function getTitle ()
94 94
     {
95 95
         return $this->title;
96 96
     }
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
      *
101 101
      * @return string
102 102
      */
103
-    public function getProjectId()
103
+    public function getProjectId ()
104 104
     {
105 105
         return $this->project_id;
106 106
     }
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
      *
111 111
      * @return string
112 112
      */
113
-    public function getPermissions()
113
+    public function getPermissions ()
114 114
     {
115 115
         return $this->permissions;
116 116
     }
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
      *
121 121
      * @return string
122 122
      */
123
-    public function getContent()
123
+    public function getContent ()
124 124
     {
125 125
         return $this->content;
126 126
     }
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
      *
131 131
      * @return \DateTime
132 132
      */
133
-    public function getCreatedAt()
133
+    public function getCreatedAt ()
134 134
     {
135 135
         return $this->created_at;
136 136
     }
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
      *
141 141
      * @return \DateTime
142 142
      */
143
-    public function getUpdatedAt()
143
+    public function getUpdatedAt ()
144 144
     {
145 145
         return $this->updated_at;
146 146
     }
Please login to merge, or discard this patch.
src/PulseBoard.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
      *
96 96
      * @return string
97 97
      */
98
-    public function getUrl()
98
+    public function getUrl ()
99 99
     {
100 100
         return $this->url;
101 101
     }
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
      *
110 110
      * @return int
111 111
      */
112
-    public function getId()
112
+    public function getId ()
113 113
     {
114 114
         return $this->id;
115 115
     }
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
      *
124 124
      * @return string
125 125
      */
126
-    public function getName()
126
+    public function getName ()
127 127
     {
128 128
         return $this->name;
129 129
     }
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
      *
138 138
      * @return string
139 139
      */
140
-    public function getDescription()
140
+    public function getDescription ()
141 141
     {
142 142
         return $this->description;
143 143
     }
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
      *
152 152
      * @return \DateTime
153 153
      */
154
-    public function getCreatedAt()
154
+    public function getCreatedAt ()
155 155
     {
156 156
         self::lazyLoad($this->created_at, "DateTime");
157 157
 
@@ -167,7 +167,7 @@  discard block
 block discarded – undo
167 167
      *
168 168
      * @return \DateTime
169 169
      */
170
-    public function getUpdatedAt()
170
+    public function getUpdatedAt ()
171 171
     {
172 172
         self::lazyLoad($this->updated_at, "DateTime");
173 173
 
@@ -256,7 +256,7 @@  discard block
 block discarded – undo
256 256
      *
257 257
      * @return PulseColumn[]
258 258
      */
259
-    public function getColumns()
259
+    public function getColumns ()
260 260
     {
261 261
         self::lazyInject($this->columns, array(
262 262
             "board_id" => $this->getId()
Please login to merge, or discard this patch.
src/PulseUpdate.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
      *
101 101
      * @return PulseUser
102 102
      */
103
-    public function getUser()
103
+    public function getUser ()
104 104
     {
105 105
         self::lazyLoad($this->user, "PulseUser");
106 106
 
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
      *
113 113
      * @return string
114 114
      */
115
-    public function getUrl()
115
+    public function getUrl ()
116 116
     {
117 117
         return $this->url;
118 118
     }
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
      *
123 123
      * @return string
124 124
      */
125
-    public function getId()
125
+    public function getId ()
126 126
     {
127 127
         return $this->id;
128 128
     }
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
      *
133 133
      * @return string
134 134
      */
135
-    public function getBody()
135
+    public function getBody ()
136 136
     {
137 137
         return $this->body;
138 138
     }
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
      *
143 143
      * @return string
144 144
      */
145
-    public function getBodyText()
145
+    public function getBodyText ()
146 146
     {
147 147
         return $this->body_text;
148 148
     }
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
      *
153 153
      * @return static[]
154 154
      */
155
-    public function getReplies()
155
+    public function getReplies ()
156 156
     {
157 157
         self::lazyArray($this->replies, "PulseUpdate");
158 158
 
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
      *
165 165
      * @return string
166 166
      */
167
-    public function getKind()
167
+    public function getKind ()
168 168
     {
169 169
         return $this->kind;
170 170
     }
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
      *
175 175
      * @return string
176 176
      */
177
-    public function getHasAssets()
177
+    public function getHasAssets ()
178 178
     {
179 179
         return $this->has_assets;
180 180
     }
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
      *
185 185
      * @return string
186 186
      */
187
-    public function getAssets()
187
+    public function getAssets ()
188 188
     {
189 189
         return $this->assets;
190 190
     }
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
      *
195 195
      * @return \DateTime
196 196
      */
197
-    public function getCreatedAt()
197
+    public function getCreatedAt ()
198 198
     {
199 199
         self::lazyLoad($this->created_at, '\DateTime');
200 200
 
@@ -206,7 +206,7 @@  discard block
 block discarded – undo
206 206
      *
207 207
      * @return \DateTime
208 208
      */
209
-    public function getUpdatedAt()
209
+    public function getUpdatedAt ()
210 210
     {
211 211
         self::lazyLoad($this->updated_at, '\DateTime');
212 212
 
@@ -238,7 +238,7 @@  discard block
 block discarded – undo
238 238
      *
239 239
      * @throws InvalidObjectException This PulseUpdate as already been deleted
240 240
      */
241
-    public function deleteUpdate()
241
+    public function deleteUpdate ()
242 242
     {
243 243
         $this->checkInvalid();
244 244
 
Please login to merge, or discard this patch.