Skip to content
This repository has been archived by the owner on Jan 3, 2020. It is now read-only.

Commit

Permalink
Enable strict types
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Faust committed Aug 3, 2017
1 parent 39aeefe commit d3313bc
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 0 deletions.
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/*
* This file is part of Laravel Leaderboard.
*
Expand Down
2 changes: 2 additions & 0 deletions src/Contracts/BoardRepository.php
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/*
* This file is part of Laravel Leaderboard.
*
Expand Down
2 changes: 2 additions & 0 deletions src/Exceptions/BlacklistedException.php
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/*
* This file is part of Laravel Leaderboard.
*
Expand Down
2 changes: 2 additions & 0 deletions src/Exceptions/InsufficientFundsException.php
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/*
* This file is part of Laravel Leaderboard.
*
Expand Down
2 changes: 2 additions & 0 deletions src/LeaderboardServiceProvider.php
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/*
* This file is part of Laravel Leaderboard.
*
Expand Down
2 changes: 2 additions & 0 deletions src/Models/Board.php
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/*
* This file is part of Laravel Leaderboard.
*
Expand Down
2 changes: 2 additions & 0 deletions src/Repositories/EloquentBoardRepository.php
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/*
* This file is part of Laravel Leaderboard.
*
Expand Down
2 changes: 2 additions & 0 deletions src/Traits/Boardable.php
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/*
* This file is part of Laravel Leaderboard.
*
Expand Down
2 changes: 2 additions & 0 deletions tests/AbstractTestCase.php
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/*
* This file is part of Laravel Leaderboard.
*
Expand Down
2 changes: 2 additions & 0 deletions tests/ServiceProviderTest.php
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/*
* This file is part of Laravel Leaderboard.
*
Expand Down

0 comments on commit d3313bc

Please sign in to comment.