@@ -100,7 +100,7 @@ class Memory extends AbstractAdapter
100100 protected accessList;
101101
102102 /**
103- * Returns latest function used to acquire access
103+ * Returns the latest function used to acquire access
104104 *
105105 * @var mixed
106106 */
@@ -114,7 +114,7 @@ class Memory extends AbstractAdapter
114114 protected activeFunctionCustomArgumentsCount = 0 ;
115115
116116 /**
117- * Returns latest key used to acquire access
117+ * Returns the latest key used to acquire access
118118 *
119119 * @var string|null
120120 */
@@ -142,7 +142,7 @@ class Memory extends AbstractAdapter
142142 protected func;
143143
144144 /**
145- * Default action for no arguments is allow
145+ * Default action for no arguments is ` allow`
146146 *
147147 * @var mixed
148148 */
@@ -175,11 +175,11 @@ class Memory extends AbstractAdapter
175175 * Adds a component to the ACL list
176176 *
177177 * Access names can be a particular action, by example
178- * search, update, delete, etc or a list of them
178+ * search, update, delete, etc. or a list of them
179179 *
180180 * Example:
181181 * ```php
182- * // Add a component to the the list allowing access to an action
182+ * // Add a component to the list allowing access to an action
183183 * $acl->addComponent(
184184 * new Phalcon\Acl\Component("customers"),
185185 * "search"
@@ -482,7 +482,7 @@ class Memory extends AbstractAdapter
482482 }
483483
484484 /**
485- * Removes an access from a component
485+ * Removes access from a component
486486 */
487487 public function dropComponentAccess (string componentName, var accessList ) -> void
488488 {
@@ -508,7 +508,7 @@ class Memory extends AbstractAdapter
508508 }
509509
510510 /**
511- * Returns latest function used to acquire access
511+ * Returns the latest function used to acquire access
512512 *
513513 * @return mixed
514514 */
@@ -526,7 +526,7 @@ class Memory extends AbstractAdapter
526526 }
527527
528528 /**
529- * Returns latest key used to acquire access
529+ * Returns the latest key used to acquire access
530530 */
531531 public function getActiveKey () -> string | null
532532 {
0 commit comments