forked from larastan/larastan
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from calebdw/fix_static_tests
Fix static tests
- Loading branch information
Showing
9 changed files
with
55 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<?php | ||
|
||
namespace Illuminate\Contracts\Redis; | ||
|
||
interface Factory {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
|
||
namespace Illuminate\Database; | ||
|
||
class Connection implements ConnectionInterface {} | ||
|
||
interface ConnectionInterface {} | ||
|
||
interface ConnectionResolverInterface {} | ||
|
||
/** | ||
* @mixin \Illuminate\Database\Connection | ||
*/ | ||
class DatabaseManager implements ConnectionResolverInterface {} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?php | ||
|
||
namespace Illuminate\Queue; | ||
|
||
abstract class Queue {} | ||
|
||
/** | ||
* @mixin \Illuminate\Contracts\Queue\Queue | ||
*/ | ||
class QueueManager implements \Illuminate\Contracts\Queue\Factory, \Illuminate\Contracts\Queue\Monitor {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,13 @@ | ||
<?php | ||
|
||
namespace Illuminate\Redis\Connections; | ||
namespace Illuminate\Redis { | ||
class RedisManager implements \Illuminate\Contracts\Redis\Factory {} | ||
} | ||
|
||
namespace Illuminate\Redis\Connections { | ||
/** | ||
* @mixin \Redis | ||
*/ | ||
abstract class Connection {} | ||
} | ||
|
||
/** | ||
* @mixin \Redis | ||
*/ | ||
abstract class Connection | ||
{} |