Skip to content

Commit

Permalink
docs fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
juliangut committed Nov 24, 2015
1 parent 865f5b8 commit d0659c1
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/Excluder/IP.php
Expand Up @@ -34,8 +34,8 @@ class IP implements ExcluderInterface
protected $provider;

/**
* @param array $ips
* @param \Janitor\Provider\IP $provider
* @param array $ips
* @param \Janitor\Provider\IP|null $provider
*/
public function __construct(array $ips = [], IPProvider $provider = null)
{
Expand Down
4 changes: 2 additions & 2 deletions src/Excluder/Path.php
Expand Up @@ -33,8 +33,8 @@ class Path implements ExcluderInterface
protected $provider;

/**
* @param array $paths
* @param \Janitor\Provider\Path $provider
* @param array $paths
* @param \Janitor\Provider\Path|null $provider
*/
public function __construct(array $paths = [], PathProvider $provider = null)
{
Expand Down
6 changes: 3 additions & 3 deletions src/Janitor.php
Expand Up @@ -35,9 +35,9 @@ class Janitor
protected $strategy;

/**
* @param array $watchers
* @param array $excluders
* @param \Janitor\Strategy $strategy
* @param array $watchers
* @param array $excluders
* @param \Janitor\Strategy|null $strategy
*/
public function __construct(array $watchers = [], array $excluders = [], Strategy $strategy = null)
{
Expand Down
2 changes: 1 addition & 1 deletion src/Watcher/Scheduled/Cron.php
Expand Up @@ -71,7 +71,7 @@ class Cron implements ScheduledWatcher
/**
* Maintenance mode interval time.
*
* @var string
* @var \DateInterval
*/
protected $interval;

Expand Down

0 comments on commit d0659c1

Please sign in to comment.