We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d04a112 commit 102749dCopy full SHA for 102749d
src/Analytics.php
@@ -157,6 +157,7 @@ public function post()
157
$kB = 1024;
158
if (mb_strlen(json_encode($reqBody)) > ($kB * 130)) {
159
GA4Exception::push("Request body exceeds 130kB");
160
+ continue;
161
}
162
163
$guzzle = new Guzzle();
@@ -194,9 +195,9 @@ public function post()
194
195
return true;
196
197
- public function toArray(bool $isParent = false, $childErrors = null): array
198
+ public function toArray(bool $isParent = false): array
199
{
- return parent::toArray($isParent, $childErrors);
200
+ return parent::toArray($isParent);
201
202
203
public static function new(string $measurementId, string $apiSecret, bool $debug = false)
0 commit comments