Skip to content

Commit

Permalink
Remove noise docblock annotations.
Browse files Browse the repository at this point in the history
  • Loading branch information
dereuromark committed Feb 5, 2019
1 parent 1d82fdd commit 6dcabd2
Show file tree
Hide file tree
Showing 13 changed files with 0 additions and 33 deletions.
3 changes: 0 additions & 3 deletions src/Auth/BaseAuthenticate.php
Expand Up @@ -22,12 +22,9 @@

/**
* Base Authentication class with common methods and properties.
*
* @mixin \Cake\Core\InstanceConfigTrait
*/
abstract class BaseAuthenticate implements EventListenerInterface
{

use InstanceConfigTrait;
use LocatorAwareTrait;

Expand Down
2 changes: 0 additions & 2 deletions src/Auth/BaseAuthorize.php
Expand Up @@ -22,11 +22,9 @@
* Abstract base authorization adapter for AuthComponent.
*
* @see \Cake\Controller\Component\AuthComponent::$authenticate
* @mixin \Cake\Core\InstanceConfigTrait
*/
abstract class BaseAuthorize
{

use InstanceConfigTrait;

/**
Expand Down
3 changes: 0 additions & 3 deletions src/Auth/Storage/SessionStorage.php
Expand Up @@ -20,12 +20,9 @@

/**
* Session based persistent storage for authenticated user record.
*
* @mixin \Cake\Core\InstanceConfigTrait
*/
class SessionStorage implements StorageInterface
{

use InstanceConfigTrait;

/**
Expand Down
3 changes: 0 additions & 3 deletions src/Cache/CacheEngine.php
Expand Up @@ -19,12 +19,9 @@

/**
* Storage engine for CakePHP caching
*
* @mixin \Cake\Core\InstanceConfigTrait
*/
abstract class CacheEngine
{

use InstanceConfigTrait;

/**
Expand Down
2 changes: 0 additions & 2 deletions src/Controller/Component.php
Expand Up @@ -55,11 +55,9 @@
*
* @link https://book.cakephp.org/3.0/en/controllers/components.html
* @see \Cake\Controller\Controller::$components
* @mixin \Cake\Core\InstanceConfigTrait
*/
class Component implements EventListenerInterface
{

use InstanceConfigTrait;
use LogTrait;

Expand Down
2 changes: 0 additions & 2 deletions src/Error/Middleware/ErrorHandlerMiddleware.php
Expand Up @@ -30,8 +30,6 @@
*
* Traps exceptions and converts them into HTML or content-type appropriate
* error pages using the CakePHP ExceptionRenderer.
*
* @mixin \Cake\Core\InstanceConfigTrait
*/
class ErrorHandlerMiddleware
{
Expand Down
3 changes: 0 additions & 3 deletions src/Http/Client.php
Expand Up @@ -93,12 +93,9 @@
* a proxy if you need to use one. The type sub option can be used to
* specify which authentication strategy you want to use.
* CakePHP comes with built-in support for basic authentication.
*
* @mixin \Cake\Core\InstanceConfigTrait
*/
class Client
{

use InstanceConfigTrait;

/**
Expand Down
3 changes: 0 additions & 3 deletions src/Log/Engine/BaseLog.php
Expand Up @@ -21,12 +21,9 @@

/**
* Base log engine class.
*
* @mixin \Cake\Core\InstanceConfigTrait
*/
abstract class BaseLog extends AbstractLogger
{

use InstanceConfigTrait;

/**
Expand Down
3 changes: 0 additions & 3 deletions src/Mailer/AbstractTransport.php
Expand Up @@ -18,12 +18,9 @@

/**
* Abstract transport for sending email
*
* @mixin \Cake\Core\InstanceConfigTrait
*/
abstract class AbstractTransport
{

use InstanceConfigTrait;

/**
Expand Down
3 changes: 0 additions & 3 deletions src/Network/Socket.php
Expand Up @@ -24,12 +24,9 @@
* CakePHP network socket connection class.
*
* Core base class for network communication.
*
* @mixin \Cake\Core\InstanceConfigTrait
*/
class Socket
{

use InstanceConfigTrait;

/**
Expand Down
1 change: 0 additions & 1 deletion src/ORM/Behavior.php
Expand Up @@ -109,7 +109,6 @@
*
* @see \Cake\ORM\Table::addBehavior()
* @see \Cake\Event\EventManager
* @mixin \Cake\Core\InstanceConfigTrait
*/
class Behavior implements EventListenerInterface
{
Expand Down
2 changes: 0 additions & 2 deletions src/ORM/Query.php
Expand Up @@ -66,11 +66,9 @@
* with the first rows of the query and each of the items, then the second rows and so on.
* @method \Cake\Collection\CollectionInterface chunk($size) Groups the results in arrays of $size rows each.
* @method bool isEmpty() Returns true if this query found no results.
* @mixin \Cake\Datasource\QueryTrait
*/
class Query extends DatabaseQuery implements JsonSerializable, QueryInterface
{

use QueryTrait {
cache as private _cache;
all as private _all;
Expand Down
3 changes: 0 additions & 3 deletions src/Routing/DispatcherFilter.php
Expand Up @@ -62,12 +62,9 @@
*
* When using the `for` or `when` matchers, conditions will be re-checked on the before and after
* callback as the conditions could change during the dispatch cycle.
*
* @mixin \Cake\Core\InstanceConfigTrait
*/
class DispatcherFilter implements EventListenerInterface
{

use InstanceConfigTrait;

/**
Expand Down

0 comments on commit 6dcabd2

Please sign in to comment.