Skip to content

Commit

Permalink
Merge pull request #1 from Rayne/typo
Browse files Browse the repository at this point in the history
Typos
  • Loading branch information
moufmouf committed Apr 7, 2016
2 parents e6f0009 + a541d12 commit 20e5649
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/Picotainer.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,21 @@ class Picotainer implements ContainerInterface
{

/**
* The delegate lookup
* The delegate lookup.
*
* @var ContainerInterface
*/
protected $delegateLookupContainer;

/**
* The array of closure defining each entry of the container.
* The array of closures defining each entry of the container.
*
* @var array<string, Closure>
*/
protected $callbacks;

/**
* The array of entries once they have been instanciated.
* The array of entries once they have been instantiated.
*
* @var array<string, mixed>
*/
Expand All @@ -35,8 +36,8 @@ class Picotainer implements ContainerInterface
/**
* Instantiate the container.
*
* @param array<string, Closure> $entries Entries must be passed as an array of anonymous functions
* @param ContainerInterface $delegateLookupContainer Optionnal delegate lookup container.
* @param array<string, Closure> $entries Entries must be passed as an array of anonymous functions.
* @param ContainerInterface $delegateLookupContainer Optional delegate lookup container.
*/
public function __construct(array $entries, ContainerInterface $delegateLookupContainer = null)
{
Expand Down

0 comments on commit 20e5649

Please sign in to comment.