Skip to content

Commit

Permalink
Fix docblock namespaces, follows #7314
Browse files Browse the repository at this point in the history
  • Loading branch information
bcrowe committed Aug 28, 2015
1 parent 2f43403 commit 7915174
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/test_app/TestApp/Model/Table/ArticlesTable.php
Expand Up @@ -31,8 +31,8 @@ public function initialize(array $config)
/**
* Find published
*
* @param Cake\ORM\Query $query The query
* @return Cake\ORM\Query
* @param \Cake\ORM\Query $query The query
* @return \Cake\ORM\Query
*/
public function findPublished($query)
{
Expand Down
4 changes: 2 additions & 2 deletions tests/test_app/TestApp/Model/Table/PaginatorPostsTable.php
Expand Up @@ -59,9 +59,9 @@ public function findPublished(Query $query, array $options)
/**
* Custom finder, used with fixture data to ensure Paginator is sending options
*
* @param Cake\ORM\Query $query
* @param \Cake\ORM\Query $query
* @param array $options
* @return Cake\ORM\Query
* @return \Cake\ORM\Query
*/
public function findAuthor(Query $query, array $options = [])
{
Expand Down

0 comments on commit 7915174

Please sign in to comment.