Skip to content

Commit

Permalink
misc docblock fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
walkersoft committed May 25, 2018
1 parent c0ccca1 commit cbe74a9
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/Contracts/CollectionInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@

/**
* Defines the interface of the basic functionality for a class that holds a collection of items.
*
* @since 1.0.0
*/
interface CollectionInterface extends CollectionCoreInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Contracts/CollectionValidationInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
namespace Fusion\Collection\Contracts;

/**
* Interface CollectionValidationInterface
* Defines common methods used by collections to validate the integrity of input and operations.
*
* @since 2.0.0
*/
Expand Down
5 changes: 5 additions & 0 deletions src/Contracts/DictionaryInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@

namespace Fusion\Collection\Contracts;

/**
* Defines the interface of the basic functionality for a class that holds a dictionary of items.
*
* @since 1.0.0
*/
interface DictionaryInterface extends CollectionCoreInterface
{
/**
Expand Down
2 changes: 2 additions & 0 deletions src/Exceptions/CollectionException.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@

/**
* Exception class used to specify collections thrown directly by the Fusion.Collection package.
*
* @since 1.0.0
*/
class CollectionException extends Exception
{
Expand Down

0 comments on commit cbe74a9

Please sign in to comment.