Skip to content
This repository has been archived by the owner on Jun 1, 2019. It is now read-only.

Commit

Permalink
fix scrutinizer issues
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze committed Mar 31, 2015
1 parent d7af9e8 commit 4e78bc0
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Expand Up @@ -9,4 +9,5 @@ php:
before_script:
- composer install --prefer-source --no-interaction --dev

script: vendor/bin/phpspec run
script: vendor/bin/phpspec run

2 changes: 1 addition & 1 deletion LICENSE
Expand Up @@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
SOFTWARE.
2 changes: 1 addition & 1 deletion phpspec.yml
Expand Up @@ -2,4 +2,4 @@ suites:
spatie_suite:
namespace: Spatie
src_path: src
spec_prefix: spec
spec_prefix: spec
@@ -1,6 +1,6 @@
<?php namespace Spatie\Activitylog\Handlers;

interface ActivitylogHandler
interface ActivitylogHandlerInterface
{
/**
* Log some activity.
Expand Down
3 changes: 1 addition & 2 deletions src/Spatie/Activitylog/Handlers/DefaultLaravelHandler.php
Expand Up @@ -3,9 +3,8 @@
namespace Spatie\Activitylog\Handlers;

use Log;
use Spatie\Activitylog\Handlers\ActivitylogHandler as HandlerInterface;

class DefaultLaravelHandler implements HandlerInterface
class DefaultLaravelHandler implements ActivitylogHandlerInterface
{
/**
* Log activity in Laravels log handler.
Expand Down
3 changes: 1 addition & 2 deletions src/Spatie/Activitylog/Handlers/EloquentHandler.php
Expand Up @@ -3,10 +3,9 @@
namespace Spatie\Activitylog\Handlers;

use Spatie\Activitylog\Models\Activity;
use Spatie\Activitylog\Handlers\ActivitylogHandler as HandlerInterface;
use Carbon\Carbon;

class EloquentHandler implements HandlerInterface
class EloquentHandler implements ActivitylogHandlerInterface
{
/**
* Log activity in an Eloquent model.
Expand Down

0 comments on commit 4e78bc0

Please sign in to comment.