Skip to content

Commit

Permalink
Added extra type-hints to DataExtension DocBlocks
Browse files Browse the repository at this point in the history
  • Loading branch information
jakxnz committed Jun 12, 2020
1 parent 2175de9 commit dfe8d23
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/ORM/DataExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ public function populateDefaults()
*
* @param Member $member
* @param array $context
* @return bool
* @return bool|null
*/
public function can($member)
{
Expand All @@ -141,7 +141,7 @@ public function can($member)
*
* @param Member $member
* @param array $context
* @return bool
* @return bool|null
*/
public function canEdit($member)
{
Expand All @@ -156,7 +156,7 @@ public function canEdit($member)
*
* @param Member $member
* @param array $context
* @return bool
* @return bool|null
*/
public function canDelete($member)
{
Expand All @@ -171,7 +171,7 @@ public function canDelete($member)
*
* @param Member $member
* @param array $context
* @return bool
* @return bool|null
*/
public function canCreate($member)
{
Expand Down

0 comments on commit dfe8d23

Please sign in to comment.