Skip to content

Commit

Permalink
fix: super & subclass property type mismatches
Browse files Browse the repository at this point in the history
  • Loading branch information
Mohammad-Alavi committed Apr 8, 2022
1 parent 494fdde commit 676bc82
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@

class PermissionTransformer extends Transformer
{
protected $availableIncludes = [
protected array $availableIncludes = [

];

protected $defaultIncludes = [
protected array $defaultIncludes = [

];

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@

class RoleTransformer extends Transformer
{
protected $availableIncludes = [
protected array $availableIncludes = [

];

protected $defaultIncludes = [
protected array $defaultIncludes = [
'permissions',
];

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@

class UserTransformer extends Transformer
{
protected $availableIncludes = [
protected array $availableIncludes = [
'roles',
];

protected $defaultIncludes = [
protected array $defaultIncludes = [

];

Expand Down

0 comments on commit 676bc82

Please sign in to comment.