Skip to content

Commit

Permalink
Correct typos in Behavior.php
Browse files Browse the repository at this point in the history
  • Loading branch information
euromark committed Sep 20, 2014
1 parent 8e3bada commit 74fc261
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/ORM/Behavior.php
Expand Up @@ -125,7 +125,7 @@ class Behavior implements EventListener {
/**
* Constructor
*
* Merge config with the default and store in the config property
* Merges config with the default and store in the config property
*
* Does not retain a reference to the Table object. If you need this
* you should override the constructor.
Expand Down Expand Up @@ -180,7 +180,7 @@ protected function _resolveMethodAliases($key, $defaults, $config) {
/**
* verifyConfig
*
* Check that implemented* keys contain values pointing at callable.
* Checks that implemented keys contain values pointing at callable.
*
* @return void
* @throws \Cake\Core\Exception\Exception if config are invalid
Expand All @@ -201,7 +201,7 @@ public function verifyConfig() {
}

/**
* Get the Model callbacks this behavior is interested in.
* Gets the Model callbacks this behavior is interested in.
*
* By defining one of the callback methods a behavior is assumed
* to be interested in the related event.
Expand Down Expand Up @@ -244,7 +244,7 @@ public function implementedEvents() {
/**
* implementedFinders
*
* provides and alias->methodname map of which finders a behavior implements. Example:
* Provides an alias->methodname map of which finders a behavior implements. Example:
*
* {{{
* [
Expand Down Expand Up @@ -274,7 +274,7 @@ public function implementedFinders() {
/**
* implementedMethods
*
* provides an alias->methodname map of which methods a behavior implements. Example:
* Provides an alias->methodname map of which methods a behavior implements. Example:
*
* {{{
* [
Expand Down Expand Up @@ -302,9 +302,9 @@ public function implementedMethods() {
}

/**
* Get the methods implemented by this behavior
* Gets the methods implemented by this behavior
*
* Use the implementedEvents() method to exclude callback methods.
* Uses the implementedEvents() method to exclude callback methods.
* Methods starting with `_` will be ignored, as will methods
* declared on Cake\ORM\Behavior
*
Expand Down

0 comments on commit 74fc261

Please sign in to comment.