Skip to content

Commit

Permalink
Fix docblocks
Browse files Browse the repository at this point in the history
  • Loading branch information
ADmad committed Dec 14, 2016
1 parent 6041a0c commit 3b94086
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/ORM/Behavior/TimestampBehavior.php
Expand Up @@ -83,7 +83,7 @@ public function initialize(array $config)
* @param \Cake\Event\Event $event Event instance.
* @param \Cake\Datasource\EntityInterface $entity Entity instance.
* @throws \UnexpectedValueException if a field's when value is misdefined
* @return true (irrespective of the behavior logic, the save will not be prevented)
* @return bool Returns true irrespective of the behavior logic, the save will not be prevented.
* @throws \UnexpectedValueException When the value for an event is not 'always', 'new' or 'existing'
*/
public function handleEvent(Event $event, EntityInterface $entity)
Expand Down
2 changes: 1 addition & 1 deletion src/ORM/PropertyMarshalInterface.php
Expand Up @@ -25,7 +25,7 @@ interface PropertyMarshalInterface
/**
* Build a set of properties that should be included in the marshalling process.
*
* @param \Cake\ORM\Marhshaller $marshaller The marhshaller of the table the behavior is attached to.
* @param \Cake\ORM\Marshaller $marshaller The marhshaller of the table the behavior is attached to.
* @param array $map The property map being built.
* @param array $options The options array used in the marshalling call.
* @return array A map of `[property => callable]` of additional properties to marshal.
Expand Down
2 changes: 1 addition & 1 deletion src/ORM/SaveOptionsBuilder.php
Expand Up @@ -40,7 +40,7 @@ class SaveOptionsBuilder extends ArrayObject
/**
* Table object.
*
* @var \Cake\ORM\Table;
* @var \Cake\ORM\Table
*/
protected $_table;

Expand Down

0 comments on commit 3b94086

Please sign in to comment.