-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix sqsqueue namespace and changelog.
- Loading branch information
1 parent
a2ad082
commit dd795fe
Showing
3 changed files
with
17 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
* @since 2015.02.24 | ||
*/ | ||
|
||
namespace UrbanIndo\Yii2\Queue; | ||
namespace UrbanIndo\Yii2\Queue\Queues; | ||
|
||
use \Aws\Sqs\SqsClient; | ||
use UrbanIndo\Yii2\Queue\Job; | ||
|
@@ -17,7 +17,7 @@ | |
* @author Petra Barus <[email protected]> | ||
* @since 2015.02.24 | ||
*/ | ||
class SqsQueue extends Queue | ||
class SqsQueue extends \UrbanIndo\Yii2\Queue\Queue | ||
{ | ||
|
||
/** | ||
|
@@ -33,7 +33,7 @@ class SqsQueue extends Queue | |
* @var array | ||
*/ | ||
public $config = []; | ||
|
||
/** | ||
* Due to ability of the queue message to be visible automatically after | ||
* a certain of time, this is not required. | ||
|
@@ -128,7 +128,7 @@ public function deleteJob(Job $job) | |
return false; | ||
} | ||
} | ||
|
||
/** | ||
* Release the job. | ||
* | ||
|