Skip to content

Commit

Permalink
Adjusted DataExtension DocBlocks to another degree of detail
Browse files Browse the repository at this point in the history
  • Loading branch information
jakxnz committed Jun 11, 2020
1 parent 0d6572a commit 2175de9
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions src/ORM/DataExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ abstract class DataExtension extends Extension
{

/**
* @deprecated No longer used by internal code
* @deprecated 4.7.0 No longer used by internal code
*/
public static function unload_extra_statics($class, $extension)
{
Expand Down Expand Up @@ -119,7 +119,8 @@ public function populateDefaults()

/**
* Influence the owner's can() permission check value to be disallowed (false),
* or allowed (true) if no other processed results are to disallow.
* allowed (true) if no other processed results are to disallow, or open (null) to not
* affect the outcome.
*
* See {@link DataObject::can()} and {@link DataObject::extendedCan()} for context.
*
Expand All @@ -133,7 +134,8 @@ public function can($member)

/**
* Influence the owner's canEdit() permission check value to be disallowed (false),
* or allowed (true) if no other processed results are to disallow.
* allowed (true) if no other processed results are to disallow, or open (null) to not
* affect the outcome.
*
* See {@link DataObject::canEdit()} and {@link DataObject::extendedCan()} for context.
*
Expand All @@ -147,7 +149,8 @@ public function canEdit($member)

/**
* Influence the owner's canDelete() permission check value to be disallowed (false),
* or allowed (true) if no other processed results are to disallow.
* allowed (true) if no other processed results are to disallow, or open (null) to not
* affect the outcome.
*
* See {@link DataObject::canDelete()} and {@link DataObject::extendedCan()} for context.
*
Expand All @@ -161,7 +164,8 @@ public function canDelete($member)

/**
* Influence the owner's canCreate() permission check value to be disallowed (false),
* or allowed (true) if no other processed results are to disallow.
* allowed (true) if no other processed results are to disallow, or open (null) to not
* affect the outcome.
*
* See {@link DataObject::canCreate()} and {@link DataObject::extendedCan()} for context.
*
Expand Down

0 comments on commit 2175de9

Please sign in to comment.