Skip to content

Commit

Permalink
Add rights() method to Airtime, Number, Phone, Prefix, and Provider m…
Browse files Browse the repository at this point in the history
…odels
  • Loading branch information
dedanirungu committed Apr 12, 2024
1 parent 157d381 commit 45aee78
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Entities/Airtime.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,4 +77,13 @@ public function structure($structure): array
return $structure;
}

/**
* Define rights for this model.
*
* @return array
*/
public function rights(): array
{

}
}
9 changes: 9 additions & 0 deletions Entities/Number.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,13 @@ public function structure($structure): array
return $structure;
}

/**
* Define rights for this model.
*
* @return array
*/
public function rights(): array
{

}
}
9 changes: 9 additions & 0 deletions Entities/Phone.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,13 @@ public function structure($structure): array
return $structure;
}

/**
* Define rights for this model.
*
* @return array
*/
public function rights(): array
{

}
}
9 changes: 9 additions & 0 deletions Entities/Prefix.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,13 @@ public function structure($structure): array
return $structure;
}

/**
* Define rights for this model.
*
* @return array
*/
public function rights(): array
{

}
}
9 changes: 9 additions & 0 deletions Entities/Provider.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,13 @@ public function structure($structure): array
return $structure;
}

/**
* Define rights for this model.
*
* @return array
*/
public function rights(): array
{

}
}

0 comments on commit 45aee78

Please sign in to comment.