mirror of
https://github.com/idanoo/php-resque.git
synced 2024-11-21 16:01:53 +00:00
Remove silly copyright line in docblock comments, update email address, remove copyright year because it is boring to maintain
This commit is contained in:
parent
c6bd34d00d
commit
c908109a74
2
LICENSE
2
LICENSE
@ -1,4 +1,4 @@
|
|||||||
(c) 2010 Chris Boulton <chris.boulton@interspire.com>
|
(c) Chris Boulton <chris@bigcommerce.com>
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining
|
Permission is hereby granted, free of charge, to any person obtaining
|
||||||
a copy of this software and associated documentation files (the
|
a copy of this software and associated documentation files (the
|
||||||
|
@ -6,8 +6,7 @@ require_once dirname(__FILE__) . '/Resque/Exception.php';
|
|||||||
* Base Resque class.
|
* Base Resque class.
|
||||||
*
|
*
|
||||||
* @package Resque
|
* @package Resque
|
||||||
* @author Chris Boulton <chris.boulton@interspire.com>
|
* @author Chris Boulton <chris@bigcommerce.com>
|
||||||
* @copyright (c) 2010 Chris Boulton
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.php
|
* @license http://www.opensource.org/licenses/mit-license.php
|
||||||
*/
|
*/
|
||||||
class Resque
|
class Resque
|
||||||
|
@ -3,8 +3,7 @@
|
|||||||
* Resque event/plugin system class
|
* Resque event/plugin system class
|
||||||
*
|
*
|
||||||
* @package Resque/Event
|
* @package Resque/Event
|
||||||
* @author Chris Boulton <chris.boulton@interspire.com>
|
* @author Chris Boulton <chris@bigcommerce.com>
|
||||||
* @copyright (c) 2010 Chris Boulton
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.php
|
* @license http://www.opensource.org/licenses/mit-license.php
|
||||||
*/
|
*/
|
||||||
class Resque_Event
|
class Resque_Event
|
||||||
|
@ -3,8 +3,7 @@
|
|||||||
* Resque exception.
|
* Resque exception.
|
||||||
*
|
*
|
||||||
* @package Resque
|
* @package Resque
|
||||||
* @author Chris Boulton <chris.boulton@interspire.com>
|
* @author Chris Boulton <chris@bigcommerce.com>
|
||||||
* @copyright (c) 2010 Chris Boulton
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.php
|
* @license http://www.opensource.org/licenses/mit-license.php
|
||||||
*/
|
*/
|
||||||
class Resque_Exception extends Exception
|
class Resque_Exception extends Exception
|
||||||
|
@ -5,8 +5,7 @@ require_once dirname(__FILE__) . '/Failure/Interface.php';
|
|||||||
* Failed Resque job.
|
* Failed Resque job.
|
||||||
*
|
*
|
||||||
* @package Resque/Failure
|
* @package Resque/Failure
|
||||||
* @author Chris Boulton <chris.boulton@interspire.com>
|
* @author Chris Boulton <chris@bigcommerce.com>
|
||||||
* @copyright (c) 2010 Chris Boulton
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.php
|
* @license http://www.opensource.org/licenses/mit-license.php
|
||||||
*/
|
*/
|
||||||
class Resque_Failure
|
class Resque_Failure
|
||||||
|
@ -3,8 +3,7 @@
|
|||||||
* Interface that all failure backends should implement.
|
* Interface that all failure backends should implement.
|
||||||
*
|
*
|
||||||
* @package Resque/Failure
|
* @package Resque/Failure
|
||||||
* @author Chris Boulton <chris.boulton@interspire.com>
|
* @author Chris Boulton <chris@bigcommerce.com>
|
||||||
* @copyright (c) 2010 Chris Boulton
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.php
|
* @license http://www.opensource.org/licenses/mit-license.php
|
||||||
*/
|
*/
|
||||||
interface Resque_Failure_Interface
|
interface Resque_Failure_Interface
|
||||||
|
@ -3,8 +3,7 @@
|
|||||||
* Redis backend for storing failed Resque jobs.
|
* Redis backend for storing failed Resque jobs.
|
||||||
*
|
*
|
||||||
* @package Resque/Failure
|
* @package Resque/Failure
|
||||||
* @author Chris Boulton <chris.boulton@interspire.com>
|
* @author Chris Boulton <chris@bigcommerce.com>
|
||||||
* @copyright (c) 2010 Chris Boulton
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.php
|
* @license http://www.opensource.org/licenses/mit-license.php
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -7,8 +7,7 @@ require_once dirname(__FILE__) . '/Job/DontPerform.php';
|
|||||||
* Resque job.
|
* Resque job.
|
||||||
*
|
*
|
||||||
* @package Resque/Job
|
* @package Resque/Job
|
||||||
* @author Chris Boulton <chris.boulton@interspire.com>
|
* @author Chris Boulton <chris@bigcommerce.com>
|
||||||
* @copyright (c) 2010 Chris Boulton
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.php
|
* @license http://www.opensource.org/licenses/mit-license.php
|
||||||
*/
|
*/
|
||||||
class Resque_Job
|
class Resque_Job
|
||||||
|
@ -3,8 +3,7 @@
|
|||||||
* Runtime exception class for a job that does not exit cleanly.
|
* Runtime exception class for a job that does not exit cleanly.
|
||||||
*
|
*
|
||||||
* @package Resque/Job
|
* @package Resque/Job
|
||||||
* @author Chris Boulton <chris.boulton@interspire.com>
|
* @author Chris Boulton <chris@bigcommerce.com>
|
||||||
* @copyright (c) 2010 Chris Boulton
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.php
|
* @license http://www.opensource.org/licenses/mit-license.php
|
||||||
*/
|
*/
|
||||||
class Resque_Job_DirtyExitException extends RuntimeException
|
class Resque_Job_DirtyExitException extends RuntimeException
|
||||||
|
@ -3,8 +3,7 @@
|
|||||||
* Exception to be thrown if a job should not be performed/run.
|
* Exception to be thrown if a job should not be performed/run.
|
||||||
*
|
*
|
||||||
* @package Resque/Job
|
* @package Resque/Job
|
||||||
* @author Chris Boulton <chris.boulton@interspire.com>
|
* @author Chris Boulton <chris@bigcommerce.com>
|
||||||
* @copyright (c) 2010 Chris Boulton
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.php
|
* @license http://www.opensource.org/licenses/mit-license.php
|
||||||
*/
|
*/
|
||||||
class Resque_Job_DontPerform extends Exception
|
class Resque_Job_DontPerform extends Exception
|
||||||
|
@ -3,8 +3,7 @@
|
|||||||
* Status tracker/information for a job.
|
* Status tracker/information for a job.
|
||||||
*
|
*
|
||||||
* @package Resque/Job
|
* @package Resque/Job
|
||||||
* @author Chris Boulton <chris.boulton@interspire.com>
|
* @author Chris Boulton <chris@bigcommerce.com>
|
||||||
* @copyright (c) 2010 Chris Boulton
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.php
|
* @license http://www.opensource.org/licenses/mit-license.php
|
||||||
*/
|
*/
|
||||||
class Resque_Job_Status
|
class Resque_Job_Status
|
||||||
|
@ -10,8 +10,7 @@ if(!class_exists('Redisent', false)) {
|
|||||||
* redis. Essentially adds namespace support to Redisent.
|
* redis. Essentially adds namespace support to Redisent.
|
||||||
*
|
*
|
||||||
* @package Resque/Redis
|
* @package Resque/Redis
|
||||||
* @author Chris Boulton <chris.boulton@interspire.com>
|
* @author Chris Boulton <chris@bigcommerce.com>
|
||||||
* @copyright (c) 2010 Chris Boulton
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.php
|
* @license http://www.opensource.org/licenses/mit-license.php
|
||||||
*/
|
*/
|
||||||
class Resque_Redis extends Redisent
|
class Resque_Redis extends Redisent
|
||||||
|
@ -10,8 +10,7 @@ if(!class_exists('RedisentCluster', false)) {
|
|||||||
* redis. Essentially adds namespace support to Redisent.
|
* redis. Essentially adds namespace support to Redisent.
|
||||||
*
|
*
|
||||||
* @package Resque/Redis
|
* @package Resque/Redis
|
||||||
* @author Chris Boulton <chris.boulton@interspire.com>
|
* @author Chris Boulton <chris@bigcommerce.com>
|
||||||
* @copyright (c) 2010 Chris Boulton
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.php
|
* @license http://www.opensource.org/licenses/mit-license.php
|
||||||
*/
|
*/
|
||||||
class Resque_RedisCluster extends RedisentCluster
|
class Resque_RedisCluster extends RedisentCluster
|
||||||
|
@ -3,8 +3,7 @@
|
|||||||
* Resque statistic management (jobs processed, failed, etc)
|
* Resque statistic management (jobs processed, failed, etc)
|
||||||
*
|
*
|
||||||
* @package Resque/Stat
|
* @package Resque/Stat
|
||||||
* @author Chris Boulton <chris.boulton@interspire.com>
|
* @author Chris Boulton <chris@bigcommerce.com>
|
||||||
* @copyright (c) 2010 Chris Boulton
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.php
|
* @license http://www.opensource.org/licenses/mit-license.php
|
||||||
*/
|
*/
|
||||||
class Resque_Stat
|
class Resque_Stat
|
||||||
|
@ -9,8 +9,7 @@ require_once dirname(__FILE__) . '/Job/DirtyExitException.php';
|
|||||||
* off the queues, running them and handling the result.
|
* off the queues, running them and handling the result.
|
||||||
*
|
*
|
||||||
* @package Resque/Worker
|
* @package Resque/Worker
|
||||||
* @author Chris Boulton <chris.boulton@interspire.com>
|
* @author Chris Boulton <chris@bigcommerce.com>
|
||||||
* @copyright (c) 2010 Chris Boulton
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.php
|
* @license http://www.opensource.org/licenses/mit-license.php
|
||||||
*/
|
*/
|
||||||
class Resque_Worker
|
class Resque_Worker
|
||||||
|
@ -5,8 +5,7 @@ require_once dirname(__FILE__) . '/bootstrap.php';
|
|||||||
* Resque_Event tests.
|
* Resque_Event tests.
|
||||||
*
|
*
|
||||||
* @package Resque/Tests
|
* @package Resque/Tests
|
||||||
* @author Chris Boulton <chris.boulton@interspire.com>
|
* @author Chris Boulton <chris@bigcommerce.com>
|
||||||
* @copyright (c) 2010 Chris Boulton
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.php
|
* @license http://www.opensource.org/licenses/mit-license.php
|
||||||
*/
|
*/
|
||||||
class Resque_Tests_EventTest extends Resque_Tests_TestCase
|
class Resque_Tests_EventTest extends Resque_Tests_TestCase
|
||||||
|
@ -5,8 +5,7 @@ require_once dirname(__FILE__) . '/bootstrap.php';
|
|||||||
* Resque_Job_Status tests.
|
* Resque_Job_Status tests.
|
||||||
*
|
*
|
||||||
* @package Resque/Tests
|
* @package Resque/Tests
|
||||||
* @author Chris Boulton <chris.boulton@interspire.com>
|
* @author Chris Boulton <chris@bigcommerce.com>
|
||||||
* @copyright (c) 2010 Chris Boulton
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.php
|
* @license http://www.opensource.org/licenses/mit-license.php
|
||||||
*/
|
*/
|
||||||
class Resque_Tests_JobStatusTest extends Resque_Tests_TestCase
|
class Resque_Tests_JobStatusTest extends Resque_Tests_TestCase
|
||||||
|
@ -5,8 +5,7 @@ require_once dirname(__FILE__) . '/bootstrap.php';
|
|||||||
* Resque_Job tests.
|
* Resque_Job tests.
|
||||||
*
|
*
|
||||||
* @package Resque/Tests
|
* @package Resque/Tests
|
||||||
* @author Chris Boulton <chris.boulton@interspire.com>
|
* @author Chris Boulton <chris@bigcommerce.com>
|
||||||
* @copyright (c) 2010 Chris Boulton
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.php
|
* @license http://www.opensource.org/licenses/mit-license.php
|
||||||
*/
|
*/
|
||||||
class Resque_Tests_JobTest extends Resque_Tests_TestCase
|
class Resque_Tests_JobTest extends Resque_Tests_TestCase
|
||||||
|
@ -5,8 +5,7 @@ require_once dirname(__FILE__) . '/bootstrap.php';
|
|||||||
* Resque_Stat tests.
|
* Resque_Stat tests.
|
||||||
*
|
*
|
||||||
* @package Resque/Tests
|
* @package Resque/Tests
|
||||||
* @author Chris Boulton <chris.boulton@interspire.com>
|
* @author Chris Boulton <chris@bigcommerce.com>
|
||||||
* @copyright (c) 2010 Chris Boulton
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.php
|
* @license http://www.opensource.org/licenses/mit-license.php
|
||||||
*/
|
*/
|
||||||
class Resque_Tests_StatTest extends Resque_Tests_TestCase
|
class Resque_Tests_StatTest extends Resque_Tests_TestCase
|
||||||
|
@ -3,8 +3,7 @@
|
|||||||
* Resque test case class. Contains setup and teardown methods.
|
* Resque test case class. Contains setup and teardown methods.
|
||||||
*
|
*
|
||||||
* @package Resque/Tests
|
* @package Resque/Tests
|
||||||
* @author Chris Boulton <chris.boulton@interspire.com>
|
* @author Chris Boulton <chris@bigcommerce.com>
|
||||||
* @copyright (c) 2010 Chris Boulton
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.php
|
* @license http://www.opensource.org/licenses/mit-license.php
|
||||||
*/
|
*/
|
||||||
class Resque_Tests_TestCase extends PHPUnit_Framework_TestCase
|
class Resque_Tests_TestCase extends PHPUnit_Framework_TestCase
|
||||||
|
@ -5,8 +5,7 @@ require_once dirname(__FILE__) . '/bootstrap.php';
|
|||||||
* Resque_Worker tests.
|
* Resque_Worker tests.
|
||||||
*
|
*
|
||||||
* @package Resque/Tests
|
* @package Resque/Tests
|
||||||
* @author Chris Boulton <chris.boulton@interspire.com>
|
* @author Chris Boulton <chris@bigcommerce.com>
|
||||||
* @copyright (c) 2010 Chris Boulton
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.php
|
* @license http://www.opensource.org/licenses/mit-license.php
|
||||||
*/
|
*/
|
||||||
class Resque_Tests_WorkerTest extends Resque_Tests_TestCase
|
class Resque_Tests_WorkerTest extends Resque_Tests_TestCase
|
||||||
|
@ -3,8 +3,7 @@
|
|||||||
* Resque test bootstrap file - sets up a test environment.
|
* Resque test bootstrap file - sets up a test environment.
|
||||||
*
|
*
|
||||||
* @package Resque/Tests
|
* @package Resque/Tests
|
||||||
* @author Chris Boulton <chris.boulton@interspire.com>
|
* @author Chris Boulton <chris@bigcommerce.com>
|
||||||
* @copyright (c) 2010 Chris Boulton
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.php
|
* @license http://www.opensource.org/licenses/mit-license.php
|
||||||
*/
|
*/
|
||||||
define('CWD', dirname(__FILE__));
|
define('CWD', dirname(__FILE__));
|
||||||
|
Loading…
Reference in New Issue
Block a user