Skip to content

Commit

Permalink
styleci fix
Browse files Browse the repository at this point in the history
  • Loading branch information
robfrawley committed Sep 16, 2016
1 parent b3a8947 commit dc1c8c1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions lib/LoggerAwareInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,21 +20,21 @@
interface LoggerAwareInterface extends BaseLoggerAwareInterface
{
/**
* Returns true if a logger instance is set
* Returns true if a logger instance is set.
*
* @return bool
*/
public function hasLogger();

/**
* Returns a logger instance or null
* Returns a logger instance or null.
*
* @return LoggerInterface|null
*/
public function getLogger();

/**
* Sets logger instance
* Sets logger instance.
*
* @param null|LoggerInterface $logger An instance of LoggerInterface
*
Expand Down
6 changes: 3 additions & 3 deletions lib/LoggerAwareTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ trait LoggerAwareTrait
private $logger;

/**
* Returns true if a logger instance is set
* Returns true if a logger instance is set.
*
* @return bool
*/
Expand All @@ -34,7 +34,7 @@ final public function hasLogger()
}

/**
* Returns a logger instance or null
* Returns a logger instance or null.
*
* @return LoggerInterface|null
*/
Expand All @@ -44,7 +44,7 @@ final public function getLogger()
}

/**
* Sets logger instance
* Sets logger instance.
*
* @param null|LoggerInterface $logger An instance of LoggerInterface
*
Expand Down

0 comments on commit dc1c8c1

Please sign in to comment.