Skip to content

Commit

Permalink
Merge pull request #9248 from ravage84/3.x-docblocks-superfluous
Browse files Browse the repository at this point in the history
Remove superfluous stuff from doc blocks
  • Loading branch information
markstory committed Aug 10, 2016
2 parents 4d1c067 + f05e7e7 commit 2ccbfcc
Show file tree
Hide file tree
Showing 370 changed files with 82 additions and 479 deletions.
1 change: 0 additions & 1 deletion src/Auth/AbstractPasswordHasher.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@

/**
* Abstract password hashing class
*
*/
abstract class AbstractPasswordHasher
{
Expand Down
1 change: 0 additions & 1 deletion src/Auth/BaseAuthenticate.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@

/**
* Base Authentication class with common methods and properties.
*
*/
abstract class BaseAuthenticate implements EventListenerInterface
{
Expand Down
1 change: 0 additions & 1 deletion src/Auth/DefaultPasswordHasher.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

/**
* Default password hashing class.
*
*/
class DefaultPasswordHasher extends AbstractPasswordHasher
{
Expand Down
1 change: 0 additions & 1 deletion src/Auth/FallbackPasswordHasher.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
* A password hasher that can use multiple different hashes where only
* one is the preferred one. This is useful when trying to migrate an
* existing database of users from one password type to another.
*
*/
class FallbackPasswordHasher extends AbstractPasswordHasher
{
Expand Down
1 change: 0 additions & 1 deletion src/Auth/PasswordHasherFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@

/**
* Builds password hashing objects
*
*/
class PasswordHasherFactory
{
Expand Down
1 change: 0 additions & 1 deletion src/Auth/WeakPasswordHasher.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
* Password hashing class that use weak hashing algorithms. This class is
* intended only to be used with legacy databases where passwords have
* not been migrated to a stronger algorithm yet.
*
*/
class WeakPasswordHasher extends AbstractPasswordHasher
{
Expand Down
1 change: 0 additions & 1 deletion src/Cache/CacheEngine.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@

/**
* Storage engine for CakePHP caching
*
*/
abstract class CacheEngine
{
Expand Down
1 change: 0 additions & 1 deletion src/Cache/Engine/ApcEngine.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@

/**
* APC storage engine for cache
*
*/
class ApcEngine extends CacheEngine
{
Expand Down
1 change: 0 additions & 1 deletion src/Cache/Engine/FileEngine.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
* engine available, or have content which is not performance sensitive.
*
* You can configure a FileEngine cache, using Cache::config()
*
*/
class FileEngine extends CacheEngine
{
Expand Down
1 change: 0 additions & 1 deletion src/Cache/Engine/MemcachedEngine.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
* support of binary protocol, and igbinary serialization
* (if memcached extension compiled with --enable-igbinary)
* Compressed keys can also be incremented/decremented
*
*/
class MemcachedEngine extends CacheEngine
{
Expand Down
1 change: 0 additions & 1 deletion src/Cache/Engine/RedisEngine.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@

/**
* Redis storage engine for cache.
*
*/
class RedisEngine extends CacheEngine
{
Expand Down
1 change: 0 additions & 1 deletion src/Collection/CollectionInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
* Describes the methods a Collection should implement. A collection is an immutable
* list of elements exposing a number of traversing and extracting method for
* generating other collections.
*
*/
interface CollectionInterface extends Iterator, JsonSerializable
{
Expand Down
1 change: 0 additions & 1 deletion src/Collection/Iterator/NestIterator.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
/**
* A type of collection that is aware of nested items and exposes methods to
* check or retrieve them
*
*/
class NestIterator extends Collection implements RecursiveIterator
{
Expand Down
1 change: 0 additions & 1 deletion src/Collection/Iterator/TreeIterator.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
/**
* A Recursive iterator used to flatten nested structures and also exposes
* all Collection methods
*
*/
class TreeIterator extends RecursiveIteratorIterator
{
Expand Down
1 change: 0 additions & 1 deletion src/Collection/Iterator/TreePrinter.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
/**
* Iterator for flattening elements in a tree structure while adding some
* visual markers for their relative position in the tree
*
*/
class TreePrinter extends RecursiveIteratorIterator
{
Expand Down
1 change: 0 additions & 1 deletion src/Collection/Iterator/ZipIterator.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
* });
* $iterator->toList(); // Returns [4, 6]
* ```
*
*/
class ZipIterator extends MultipleIterator implements CollectionInterface, Serializable
{
Expand Down
1 change: 0 additions & 1 deletion src/Console/ConsoleInput.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

/**
* Object wrapper for interacting with stdin
*
*/
class ConsoleInput
{
Expand Down
1 change: 0 additions & 1 deletion src/Console/ConsoleOptionParser.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@
*
* By providing help text for your positional arguments and named arguments, the ConsoleOptionParser
* can generate a help display for you. You can view the help for shells by using the `--help` or `-h` switch.
*
*/
class ConsoleOptionParser
{
Expand Down
1 change: 0 additions & 1 deletion src/Console/ConsoleOutput.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
* This would create orange 'Overwrite:' text, while the rest of the text would remain the normal color.
* See ConsoleOutput::styles() to learn more about defining your own styles. Nested styles are not supported
* at this time.
*
*/
class ConsoleOutput
{
Expand Down
1 change: 0 additions & 1 deletion src/Console/Exception/ConsoleException.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
/**
* Exception class for Console libraries. This exception will be thrown from Console library
* classes when they encounter an error.
*
*/
class ConsoleException extends Exception
{
Expand Down
1 change: 0 additions & 1 deletion src/Console/Exception/MissingHelperException.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

/**
* Used when a Helper cannot be found.
*
*/
class MissingHelperException extends Exception
{
Expand Down
1 change: 0 additions & 1 deletion src/Console/Exception/MissingShellException.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

/**
* Used when a shell cannot be found.
*
*/
class MissingShellException extends Exception
{
Expand Down
1 change: 0 additions & 1 deletion src/Console/Exception/MissingShellMethodException.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

/**
* Used when a shell method cannot be found.
*
*/
class MissingShellMethodException extends Exception
{
Expand Down
1 change: 0 additions & 1 deletion src/Console/Exception/MissingTaskException.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

/**
* Used when a Task cannot be found.
*
*/
class MissingTaskException extends Exception
{
Expand Down
1 change: 0 additions & 1 deletion src/Controller/Exception/MissingComponentException.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

/**
* Used when a component cannot be found.
*
*/
class MissingComponentException extends Exception
{
Expand Down
1 change: 0 additions & 1 deletion src/Core/ClassLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@

/**
* ClassLoader
*
*/
class ClassLoader
{
Expand Down
1 change: 0 additions & 1 deletion src/Core/Configure/Engine/PhpConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
*
* Files compatible with PhpConfig should return an array that
* contains all of the configuration data contained in the file.
*
*/
class PhpConfig implements ConfigEngineInterface
{
Expand Down
1 change: 0 additions & 1 deletion src/Core/Exception/Exception.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

/**
* Base class that all CakePHP Exceptions extend.
*
*/
class Exception extends RuntimeException
{
Expand Down
1 change: 0 additions & 1 deletion src/Core/Exception/MissingPluginException.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@

/**
* Exception raised when a plugin could not be found
*
*/
class MissingPluginException extends Exception
{
Expand Down
1 change: 0 additions & 1 deletion src/Database/Driver.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
/**
* Represents a database diver containing all specificities for
* a database engine including its SQL dialect
*
*/
abstract class Driver
{
Expand Down
1 change: 0 additions & 1 deletion src/Database/Schema/CachedCollection.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@

/**
* Extends the schema collection class to provide caching
*
*/
class CachedCollection extends Collection
{
Expand Down
1 change: 0 additions & 1 deletion src/Datasource/Exception/InvalidPrimaryKeyException.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@

/**
* Exception raised when the provided primary key does not match the table primary key
*
*/
class InvalidPrimaryKeyException extends RuntimeException
{
Expand Down
1 change: 0 additions & 1 deletion src/Datasource/Exception/MissingDatasourceException.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

/**
* Used when a datasource cannot be found.
*
*/
class MissingDatasourceException extends Exception
{
Expand Down
1 change: 0 additions & 1 deletion src/Datasource/Exception/MissingModelException.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@

/**
* Used when a model cannot be found.
*
*/
class MissingModelException extends Exception
{
Expand Down
1 change: 0 additions & 1 deletion src/Datasource/Exception/RecordNotFoundException.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@

/**
* Exception raised when a particular record was not found
*
*/
class RecordNotFoundException extends RuntimeException
{
Expand Down
1 change: 0 additions & 1 deletion src/Datasource/QueryTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
/**
* Contains the characteristics for an object that is attached to a repository and
* can retrieve results based on any criteria.
*
*/
trait QueryTrait
{
Expand Down
1 change: 0 additions & 1 deletion src/Datasource/ResultSetInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

/**
* Describes how a collection of datasource results should look like
*
*/
interface ResultSetInterface extends CollectionInterface, Countable, Serializable
{
Expand Down
1 change: 0 additions & 1 deletion src/Error/FatalErrorException.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

/**
* Represents a fatal error
*
*/
class FatalErrorException extends Exception
{
Expand Down
1 change: 0 additions & 1 deletion src/Error/PHP7ErrorException.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
* Wraps a PHP 7 Error object inside a normal Exception
* so it can be handled correctly by the rest of the
* error handling system
*
*/
class PHP7ErrorException extends Exception
{
Expand Down
1 change: 0 additions & 1 deletion src/Event/Event.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
* Represents the transport class of events across the system. It receives a name, subject and an optional
* payload. The name can be any string that uniquely identifies the event across the application, while the subject
* represents the object that the event applies to.
*
*/
class Event
{
Expand Down
1 change: 0 additions & 1 deletion src/Event/EventDispatcherTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

/**
* Implements Cake\Event\EventDispatcherInterface.
*
*/
trait EventDispatcherTrait
{
Expand Down
1 change: 0 additions & 1 deletion src/Event/EventListenerInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
/**
* Objects implementing this interface should declare the `implementedEvents` function
* to notify the event manager what methods should be called when an event is triggered.
*
*/
interface EventListenerInterface
{
Expand Down
1 change: 0 additions & 1 deletion src/Filesystem/File.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@

/**
* Convenience class for reading, writing and appending to files.
*
*/
class File
{
Expand Down
1 change: 0 additions & 1 deletion src/I18n/ChainMessagesLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
/**
* Wraps multiple message loaders calling them one after another until
* one of them returns a non-empty package.
*
*/
class ChainMessagesLoader
{
Expand Down
1 change: 0 additions & 1 deletion src/I18n/Time.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
/**
* Extends the built-in DateTime class to provide handy methods and locale-aware
* formatting helpers
*
*/
class Time extends MutableDateTime implements JsonSerializable
{
Expand Down
1 change: 0 additions & 1 deletion src/Log/Engine/BaseLog.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

/**
* Base log engine class.
*
*/
abstract class BaseLog extends AbstractLogger
{
Expand Down
1 change: 0 additions & 1 deletion src/Log/Engine/FileLog.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
/**
* File Storage stream for Logging. Writes logs to different files
* based on the level of log it is.
*
*/
class FileLog extends BaseLog
{
Expand Down
1 change: 0 additions & 1 deletion src/Mailer/AbstractTransport.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@

/**
* Abstract transport for sending email
*
*/
abstract class AbstractTransport
{
Expand Down
1 change: 0 additions & 1 deletion src/Mailer/Exception/MissingMailerException.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@

/**
* Used when a mailer cannot be found.
*
*/
class MissingMailerException extends Exception
{
Expand Down
1 change: 0 additions & 1 deletion src/Mailer/Transport/DebugTransport.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
/**
* Debug Transport class, useful for emulate the email sending process and inspect the resulted
* email message before actually send it during development
*
*/
class DebugTransport extends AbstractTransport
{
Expand Down
Loading

0 comments on commit 2ccbfcc

Please sign in to comment.