Skip to content

Commit

Permalink
Correct doc blocks.
Browse files Browse the repository at this point in the history
  • Loading branch information
euromark committed Sep 20, 2014
1 parent b1f50e5 commit 6427d5c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Model/Behavior/TranslateBehavior.php
Expand Up @@ -71,7 +71,7 @@ class TranslateBehavior extends Behavior {
/** /**
* Constructor * Constructor
* *
* @param Table $table The table this behavior is attached to. * @param \Cake\ORM\Table $table The table this behavior is attached to.
* @param array $config The config for this behavior. * @param array $config The config for this behavior.
*/ */
public function __construct(Table $table, array $config = []) { public function __construct(Table $table, array $config = []) {
Expand Down
2 changes: 1 addition & 1 deletion src/ORM/Behavior.php
Expand Up @@ -130,7 +130,7 @@ class Behavior implements EventListener {
* Does not retain a reference to the Table object. If you need this * Does not retain a reference to the Table object. If you need this
* you should override the constructor. * you should override the constructor.
* *
* @param Table $table The table this behavior is attached to. * @param \Cake\ORM\Table $table The table this behavior is attached to.
* @param array $config The config for this behavior. * @param array $config The config for this behavior.
*/ */
public function __construct(Table $table, array $config = []) { public function __construct(Table $table, array $config = []) {
Expand Down

0 comments on commit 6427d5c

Please sign in to comment.