-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0ff658f
commit 0bffae4
Showing
9 changed files
with
17 additions
and
17 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 |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
* @author Aaron Francis <[email protected]|https://twitter.com/aarondfrancis> | ||
*/ | ||
|
||
namespace Resolute\PseudoDaemon; | ||
namespace Hammerstone\PseudoDaemon; | ||
|
||
use Illuminate\Support\Carbon; | ||
use Illuminate\Support\Str; | ||
|
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
* @author Aaron Francis <[email protected]|https://twitter.com/aarondfrancis> | ||
*/ | ||
|
||
namespace Resolute\PseudoDaemon; | ||
namespace Hammerstone\PseudoDaemon; | ||
|
||
class PseudoDaemonControl | ||
{ | ||
|
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
* @author Aaron Francis <[email protected]|https://twitter.com/aarondfrancis> | ||
*/ | ||
|
||
namespace Resolute\PseudoDaemon; | ||
namespace Hammerstone\PseudoDaemon; | ||
|
||
use Illuminate\Console\Scheduling\CallbackEvent; | ||
use Illuminate\Console\Scheduling\Event; | ||
|
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 |
---|---|---|
|
@@ -3,12 +3,12 @@ | |
* @author Aaron Francis <[email protected]|https://twitter.com/aarondfrancis> | ||
*/ | ||
|
||
namespace Resolute\PseudoDaemon\Tests; | ||
namespace Hammerstone\PseudoDaemon\Tests; | ||
|
||
use Illuminate\Console\Scheduling\CacheEventMutex; | ||
use Illuminate\Console\Scheduling\Event; | ||
use Orchestra\Testbench\TestCase; | ||
use Resolute\PseudoDaemon\PseudoDaemonServiceProvider; | ||
use Hammerstone\PseudoDaemon\PseudoDaemonServiceProvider; | ||
|
||
class EventDaemonizeTest extends TestCase | ||
{ | ||
|
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 |
---|---|---|
|
@@ -3,13 +3,13 @@ | |
* @author Aaron Francis <[email protected]|https://twitter.com/aarondfrancis> | ||
*/ | ||
|
||
namespace Resolute\PseudoDaemon\Tests; | ||
namespace Hammerstone\PseudoDaemon\Tests; | ||
|
||
use Illuminate\Support\Carbon; | ||
use Mockery; | ||
use Orchestra\Testbench\TestCase; | ||
use Resolute\PseudoDaemon\PseudoDaemonControl; | ||
use Resolute\PseudoDaemon\Tests\Support\TestCommand; | ||
use Hammerstone\PseudoDaemon\PseudoDaemonControl; | ||
use Hammerstone\PseudoDaemon\Tests\Support\TestCommand; | ||
|
||
class PseudoDaemonTraitTest extends TestCase | ||
{ | ||
|
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 |
---|---|---|
|
@@ -3,11 +3,11 @@ | |
* @author Aaron Francis <[email protected]|https://twitter.com/aarondfrancis> | ||
*/ | ||
|
||
namespace Resolute\PseudoDaemon\Tests\Support; | ||
namespace Hammerstone\PseudoDaemon\Tests\Support; | ||
|
||
|
||
use Illuminate\Console\Command; | ||
use Resolute\PseudoDaemon\IsPseudoDaemon; | ||
use Hammerstone\PseudoDaemon\IsPseudoDaemon; | ||
|
||
class TestCommand extends Command | ||
{ | ||
|