Completed
Pull Request — master (#6877)
by Damian
07:58
created
src/Security/Member.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -889,9 +889,9 @@  discard block
 block discarded – undo
889 889
      * });
890 890
      * </code>
891 891
      *
892
-     * @param Member|null|int $member Member or member ID to log in as.
892
+     * @param null|Member $member Member or member ID to log in as.
893 893
      * Set to null or 0 to act as a logged out user.
894
-     * @param $callback
894
+     * @param \Closure $callback
895 895
      */
896 896
     public static function actAs($member, $callback)
897 897
     {
@@ -1661,7 +1661,7 @@  discard block
 block discarded – undo
1661 1661
      * This is likely to be customized for social sites etc. with a looser permission model.
1662 1662
      *
1663 1663
      * @param Member $member
1664
-     * @return bool
1664
+     * @return boolean|string
1665 1665
      */
1666 1666
     public function canView($member = null)
1667 1667
     {
@@ -1692,7 +1692,7 @@  discard block
 block discarded – undo
1692 1692
      * Otherwise they'll need ADMIN or CMS_ACCESS_SecurityAdmin permissions
1693 1693
      *
1694 1694
      * @param Member $member
1695
-     * @return bool
1695
+     * @return boolean|string
1696 1696
      */
1697 1697
     public function canEdit($member = null)
1698 1698
     {
@@ -1727,7 +1727,7 @@  discard block
 block discarded – undo
1727 1727
      * Otherwise they'll need ADMIN or CMS_ACCESS_SecurityAdmin permissions
1728 1728
      *
1729 1729
      * @param Member $member
1730
-     * @return bool
1730
+     * @return boolean|string
1731 1731
      */
1732 1732
     public function canDelete($member = null)
1733 1733
     {
Please login to merge, or discard this patch.
src/ORM/DataObject.php 1 patch
Doc Comments   +9 added lines, -8 removed lines patch added patch discarded remove patch
@@ -2176,7 +2176,7 @@  discard block
 block discarded – undo
2176 2176
      * Called by {@link __get()} and any getFieldName() methods you might create.
2177 2177
      *
2178 2178
      * @param string $field The name of the field
2179
-     * @return mixed The field value
2179
+     * @return string|null The field value
2180 2180
      */
2181 2181
     public function getField($field)
2182 2182
     {
@@ -2458,6 +2458,7 @@  discard block
 block discarded – undo
2458 2458
 
2459 2459
     /**
2460 2460
      * {@inheritdoc}
2461
+     * @param string $field
2461 2462
      */
2462 2463
     public function castingHelper($field)
2463 2464
     {
@@ -2563,7 +2564,7 @@  discard block
 block discarded – undo
2563 2564
      * </code>
2564 2565
      *
2565 2566
      * @param string $methodName Method on the same object, e.g. {@link canEdit()}
2566
-     * @param Member|int $member
2567
+     * @param null|Member $member
2567 2568
      * @param array $context Optional context
2568 2569
      * @return boolean|null
2569 2570
      */
@@ -2586,7 +2587,7 @@  discard block
 block discarded – undo
2586 2587
 
2587 2588
     /**
2588 2589
      * @param Member $member
2589
-     * @return boolean
2590
+     * @return boolean|string
2590 2591
      */
2591 2592
     public function canView($member = null)
2592 2593
     {
@@ -2599,7 +2600,7 @@  discard block
 block discarded – undo
2599 2600
 
2600 2601
     /**
2601 2602
      * @param Member $member
2602
-     * @return boolean
2603
+     * @return boolean|string
2603 2604
      */
2604 2605
     public function canEdit($member = null)
2605 2606
     {
@@ -2612,7 +2613,7 @@  discard block
 block discarded – undo
2612 2613
 
2613 2614
     /**
2614 2615
      * @param Member $member
2615
-     * @return boolean
2616
+     * @return boolean|string
2616 2617
      */
2617 2618
     public function canDelete($member = null)
2618 2619
     {
@@ -2627,7 +2628,7 @@  discard block
 block discarded – undo
2627 2628
      * @param Member $member
2628 2629
      * @param array $context Additional context-specific data which might
2629 2630
      * affect whether (or where) this object could be created.
2630
-     * @return boolean
2631
+     * @return boolean|string
2631 2632
      */
2632 2633
     public function canCreate($member = null, $context = array())
2633 2634
     {
@@ -2742,7 +2743,7 @@  discard block
 block discarded – undo
2742 2743
      * Traverses to a field referenced by relationships between data objects, returning the value
2743 2744
      * The path to the related field is specified with dot separated syntax (eg: Parent.Child.Child.FieldName)
2744 2745
      *
2745
-     * @param $fieldName string
2746
+     * @param string $fieldName string
2746 2747
      * @return string | null - will return null on a missing value
2747 2748
      */
2748 2749
     public function relField($fieldName)
@@ -2820,7 +2821,7 @@  discard block
 block discarded – undo
2820 2821
      * @param string $callerClass The class of objects to be returned
2821 2822
      * @param string|array $filter A filter to be inserted into the WHERE clause.
2822 2823
      * Supports parameterised queries. See SQLSelect::addWhere() for syntax examples.
2823
-     * @param string|array $sort A sort expression to be inserted into the ORDER
2824
+     * @param string $sort A sort expression to be inserted into the ORDER
2824 2825
      * BY clause.  If omitted, self::$default_sort will be used.
2825 2826
      * @param string $join Deprecated 3.0 Join clause. Use leftJoin($table, $joinClause) instead.
2826 2827
      * @param string|array $limit A limit expression to be inserted into the LIMIT clause.
Please login to merge, or discard this patch.
src/Security/InheritedPermissions.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@
 block discarded – undo
86 86
     /**
87 87
      * Global permissions required to edit
88 88
      *
89
-     * @param array $permissions
89
+     * @param string[] $permissions
90 90
      * @return $this
91 91
      */
92 92
     public function setGlobalEditPermissions($permissions)
Please login to merge, or discard this patch.
tests/php/Security/InheritedPermissionsTest/TestPermissionNode.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -54,6 +54,9 @@
 block discarded – undo
54 54
         return Injector::inst()->get(InheritedPermissions::class.'.testpermissions');
55 55
     }
56 56
 
57
+    /**
58
+     * @param DataObject $member
59
+     */
57 60
     public function canEdit($member = null)
58 61
     {
59 62
         if (!$member) {
Please login to merge, or discard this patch.