Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed typecast of populate argument #35

Merged
merged 1 commit into from
Feb 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/LaravelStrapi.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public function __construct()
}
}

public function collection(string $type, $sortKey = 'id', $sortOrder = 'DESC', $limit = 20, $start = 0, $fullUrls = true, array $populate = [], array $queryData = []): array
public function collection(string $type, $sortKey = 'id', $sortOrder = 'DESC', $limit = 20, $start = 0, $fullUrls = true, array|string $populate = [], array $queryData = []): array
{
$endpoint = $this->strapiUrl.'/'.$type;

Expand Down Expand Up @@ -99,7 +99,7 @@ public function collectionCount(string $type): int
});
}

public function entry(string $type, int $id, $fullUrls = true, array $populate = [], array $queryData = []): array
public function entry(string $type, int $id, $fullUrls = true, array|string $populate = [], array $queryData = []): array
{
$endpoint = $this->strapiUrl.'/'.$type.'/'.$id;

Expand Down Expand Up @@ -140,7 +140,7 @@ public function entry(string $type, int $id, $fullUrls = true, array $populate =
return $return;
}

public function entriesByField(string $type, string $fieldName, $fieldValue, $fullUrls = true, array $populate = [], array $queryData = []): array
public function entriesByField(string $type, string $fieldName, $fieldValue, $fullUrls = true, array|string $populate = [], array $queryData = []): array
{
$endpoint = $this->strapiUrl.'/'.$type;

Expand Down Expand Up @@ -183,7 +183,7 @@ public function entriesByField(string $type, string $fieldName, $fieldValue, $fu
return $entries;
}

public function single(string $type, string $pluck = null, $fullUrls = true, array $populate = [], array $queryData = []): array
public function single(string $type, string $pluck = null, $fullUrls = true, array|string $populate = [], array $queryData = []): array
{
$endpoint = $this->strapiUrl.'/'.$type;

Expand Down
Loading