Browse Source

Fix more FQCN docblocks.

dereuromark 9 years ago
parent
commit
b0eb42d40a
2 changed files with 3 additions and 3 deletions
  1. 1 1
      src/Http/Server.php
  2. 2 2
      src/ORM/Table.php

+ 1 - 1
src/Http/Server.php

@@ -124,7 +124,7 @@ class Server
     /**
      * Get the current application.
      *
-     * @return BaseApplication The application that will be run.
+     * @return \Cake\Http\BaseApplication The application that will be run.
      */
     public function getApp()
     {

+ 2 - 2
src/ORM/Table.php

@@ -1495,7 +1495,7 @@ class Table implements RepositoryInterface, EventListenerInterface, EventDispatc
      *   created entities. This callback will be called *before* the entity
      *   is persisted.
      * @param array $options The options to use when saving.
-     * @return EntityInterface An entity.
+     * @return \Cake\Datasource\EntityInterface An entity.
      */
     public function findOrCreate($search, callable $callback = null, $options = [])
     {
@@ -1518,7 +1518,7 @@ class Table implements RepositoryInterface, EventListenerInterface, EventDispatc
      *   created entities. This callback will be called *before* the entity
      *   is persisted.
      * @param array $options The options to use when saving.
-     * @return EntityInterface An entity.
+     * @return \Cake\Datasource\EntityInterface An entity.
      */
     protected function _processFindOrCreate($search, callable $callback = null, $options = [])
     {