@@ -319,6 +319,9 @@ |
||
319 | 319 | return (new PulseGroup($groupResult)); |
320 | 320 | } |
321 | 321 | |
322 | + /** |
|
323 | + * @param boolean $showArchived |
|
324 | + */ |
|
322 | 325 | private function fetchGroups ($showArchived) |
323 | 326 | { |
324 | 327 | $url = sprintf("%s/%s/groups.json", parent::apiEndpoint(), $this->getId()); |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | * @since 0.1.0 |
115 | 115 | * @return string |
116 | 116 | */ |
117 | - public function getUrl() |
|
117 | + public function getUrl () |
|
118 | 118 | { |
119 | 119 | return $this->url; |
120 | 120 | } |
@@ -126,7 +126,7 @@ discard block |
||
126 | 126 | * @since 0.1.0 |
127 | 127 | * @return int |
128 | 128 | */ |
129 | - public function getId() |
|
129 | + public function getId () |
|
130 | 130 | { |
131 | 131 | return $this->id; |
132 | 132 | } |
@@ -138,7 +138,7 @@ discard block |
||
138 | 138 | * @since 0.1.0 |
139 | 139 | * @return string |
140 | 140 | */ |
141 | - public function getName() |
|
141 | + public function getName () |
|
142 | 142 | { |
143 | 143 | return $this->name; |
144 | 144 | } |
@@ -150,7 +150,7 @@ discard block |
||
150 | 150 | * @since 0.1.0 |
151 | 151 | * @return string |
152 | 152 | */ |
153 | - public function getDescription() |
|
153 | + public function getDescription () |
|
154 | 154 | { |
155 | 155 | return $this->description; |
156 | 156 | } |
@@ -162,7 +162,7 @@ discard block |
||
162 | 162 | * @since 0.1.0 |
163 | 163 | * @return PulseColumn[] |
164 | 164 | */ |
165 | - public function getColumns() |
|
165 | + public function getColumns () |
|
166 | 166 | { |
167 | 167 | self::lazyInject($this->columns, array( |
168 | 168 | "board_id" => $this->getId() |
@@ -179,7 +179,7 @@ discard block |
||
179 | 179 | * @since 0.1.0 |
180 | 180 | * @return \DateTime |
181 | 181 | */ |
182 | - public function getCreatedAt() |
|
182 | + public function getCreatedAt () |
|
183 | 183 | { |
184 | 184 | self::lazyLoad($this->created_at, "DateTime"); |
185 | 185 | |
@@ -193,7 +193,7 @@ discard block |
||
193 | 193 | * @since 0.1.0 |
194 | 194 | * @return \DateTime |
195 | 195 | */ |
196 | - public function getUpdatedAt() |
|
196 | + public function getUpdatedAt () |
|
197 | 197 | { |
198 | 198 | self::lazyLoad($this->updated_at, "DateTime"); |
199 | 199 |
@@ -219,7 +219,7 @@ discard block |
||
219 | 219 | * @param int|PulseUser $user_id The user that will be subscribed to the board |
220 | 220 | * @param bool|null $as_admin Set to true if the user will be an admin of the board |
221 | 221 | */ |
222 | - public function addSubscriber ($user_id, $as_admin = NULL) |
|
222 | + public function addSubscriber ($user_id, $as_admin = null) |
|
223 | 223 | { |
224 | 224 | if ($user_id instanceof PulseUser) |
225 | 225 | { |
@@ -448,7 +448,7 @@ discard block |
||
448 | 448 | $this->deletedObject = true; |
449 | 449 | } |
450 | 450 | |
451 | - public static function createBoard ($name, $user_id, $description = NULL) |
|
451 | + public static function createBoard ($name, $user_id, $description = null) |
|
452 | 452 | { |
453 | 453 | $url = sprintf("%s.json", parent::apiEndpoint()); |
454 | 454 | $postParams = array( |
@@ -69,6 +69,9 @@ |
||
69 | 69 | $this->deletedObject = true; |
70 | 70 | } |
71 | 71 | |
72 | + /** |
|
73 | + * @param string $field |
|
74 | + */ |
|
72 | 75 | private function editField ($field, $value) |
73 | 76 | { |
74 | 77 | $this->checkInvalid(); |
@@ -233,7 +233,7 @@ |
||
233 | 233 | * |
234 | 234 | * @throws \allejo\DaPulse\Exceptions\CurlException If cURL is misconfigured or encounters an error |
235 | 235 | * |
236 | - * @return mixed |
|
236 | + * @return string |
|
237 | 237 | */ |
238 | 238 | private function executeCurl () |
239 | 239 | { |
@@ -18,7 +18,7 @@ discard block |
||
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 |
||
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 |
@@ -407,7 +407,7 @@ |
||
407 | 407 | * @since 0.1.0 |
408 | 408 | * @return PulseNote |
409 | 409 | */ |
410 | - public function addNote ($title, $content, $owners_only = false, $user_id = NULL, $create_update = false) |
|
410 | + public function addNote ($title, $content, $owners_only = false, $user_id = null, $create_update = false) |
|
411 | 411 | { |
412 | 412 | $url = sprintf($this->urlSyntax, parent::apiEndpoint(), $this->id, "notes"); |
413 | 413 | $postParams = array( |
@@ -136,7 +136,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 | { |
@@ -15,7 +15,7 @@ |
||
15 | 15 | parent::__construct($array); |
16 | 16 | } |
17 | 17 | |
18 | - public function editNote ($title = NULL, $content = NULL, $user_id = NULL, $create_update = NULL) |
|
18 | + public function editNote ($title = null, $content = null, $user_id = null, $create_update = null) |
|
19 | 19 | { |
20 | 20 | $this->checkInvalid(); |
21 | 21 |
@@ -70,7 +70,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 | } |
@@ -51,7 +51,7 @@ |
||
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 | { |
@@ -25,7 +25,7 @@ |
||
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 | } |
@@ -48,14 +48,14 @@ discard block |
||
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 |
||
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 |
||
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 |
@@ -162,7 +162,9 @@ |
||
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 | + { |
|
167 | +} |
|
166 | 168 | |
167 | 169 | /** |
168 | 170 | * Inject data into the array that will be mapped into individual instance variables. This function must be called |
@@ -454,7 +454,7 @@ |
||
454 | 454 | * |
455 | 455 | * @return string The base URL to call |
456 | 456 | */ |
457 | - final protected static function apiEndpoint ($apiPrefix = NULL) |
|
457 | + final protected static function apiEndpoint ($apiPrefix = null) |
|
458 | 458 | { |
459 | 459 | $apiSection = isset($apiPrefix) ? $apiPrefix : static::API_PREFIX; |
460 | 460 |