Skip to content

Commit

Permalink
Add rights() method to Gateway, Payment, Simulate, Stkpush, and Webho…
Browse files Browse the repository at this point in the history
…ok entities
  • Loading branch information
dedanirungu committed Apr 12, 2024
1 parent 63d25a6 commit 42ab19c
Show file tree
Hide file tree
Showing 5 changed files with 53 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Entities/Gateway.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,16 @@ public function structure($structure): array
return $structure;
}

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

}

}

/**
Expand Down
10 changes: 10 additions & 0 deletions Entities/Payment.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,4 +81,14 @@ public function structure($structure): array

return $structure;
}

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

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


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

}

}
11 changes: 11 additions & 0 deletions Entities/Stkpush.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,4 +82,15 @@ public function structure($structure): array

return $structure;
}


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

}
}
11 changes: 11 additions & 0 deletions Entities/Webhook.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,15 @@ public function structure($structure): array

return $structure;
}


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

}
}

0 comments on commit 42ab19c

Please sign in to comment.