Skip to content

Commit

Permalink
Add license header
Browse files Browse the repository at this point in the history
  • Loading branch information
Eugene Leonovich committed Jul 9, 2015
1 parent e77a57d commit 26b7c0e
Show file tree
Hide file tree
Showing 45 changed files with 421 additions and 16 deletions.
9 changes: 9 additions & 0 deletions src/ExceptionalQueue.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
<?php

/*
* This file is part of the Tarantool Queue package.
*
* (c) Eugene Leonovich <gen.work@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Phive\Queue;

class ExceptionalQueue implements Queue
Expand Down
9 changes: 9 additions & 0 deletions src/InMemoryQueue.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
<?php

/*
* This file is part of the Tarantool Queue package.
*
* (c) Eugene Leonovich <gen.work@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Phive\Queue;

class InMemoryQueue implements Queue
Expand Down
9 changes: 9 additions & 0 deletions src/MongoQueue.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
<?php

/*
* This file is part of the Tarantool Queue package.
*
* (c) Eugene Leonovich <gen.work@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Phive\Queue;

class MongoQueue implements Queue
Expand Down
9 changes: 9 additions & 0 deletions src/NoItemAvailableException.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
<?php

/*
* This file is part of the Tarantool Queue package.
*
* (c) Eugene Leonovich <gen.work@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Phive\Queue;

class NoItemAvailableException extends QueueException
Expand Down
9 changes: 9 additions & 0 deletions src/Pdo/GenericPdoQueue.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
<?php

/*
* This file is part of the Tarantool Queue package.
*
* (c) Eugene Leonovich <gen.work@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Phive\Queue\Pdo;

use Phive\Queue\NoItemAvailableException;
Expand Down
9 changes: 9 additions & 0 deletions src/Pdo/PdoQueue.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
<?php

/*
* This file is part of the Tarantool Queue package.
*
* (c) Eugene Leonovich <gen.work@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Phive\Queue\Pdo;

use Phive\Queue\Queue;
Expand Down
9 changes: 9 additions & 0 deletions src/Pdo/SqlitePdoQueue.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
<?php

/*
* This file is part of the Tarantool Queue package.
*
* (c) Eugene Leonovich <gen.work@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Phive\Queue\Pdo;

use Phive\Queue\NoItemAvailableException;
Expand Down
9 changes: 9 additions & 0 deletions src/PheanstalkQueue.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
<?php

/*
* This file is part of the Tarantool Queue package.
*
* (c) Eugene Leonovich <gen.work@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Phive\Queue;

use Pheanstalk\Exception\ServerException;
Expand Down
9 changes: 9 additions & 0 deletions src/Queue.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
<?php

/*
* This file is part of the Tarantool Queue package.
*
* (c) Eugene Leonovich <gen.work@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Phive\Queue;

interface Queue extends \Countable
Expand Down
9 changes: 9 additions & 0 deletions src/QueueException.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
<?php

/*
* This file is part of the Tarantool Queue package.
*
* (c) Eugene Leonovich <gen.work@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Phive\Queue;

class QueueException extends \RuntimeException
Expand Down
9 changes: 9 additions & 0 deletions src/QueueUtils.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
<?php

/*
* This file is part of the Tarantool Queue package.
*
* (c) Eugene Leonovich <gen.work@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Phive\Queue;

abstract class QueueUtils
Expand Down
9 changes: 9 additions & 0 deletions src/RedisQueue.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
<?php

/*
* This file is part of the Tarantool Queue package.
*
* (c) Eugene Leonovich <gen.work@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Phive\Queue;

/**
Expand Down
9 changes: 9 additions & 0 deletions src/SysVQueue.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
<?php

/*
* This file is part of the Tarantool Queue package.
*
* (c) Eugene Leonovich <gen.work@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Phive\Queue;

class SysVQueue implements Queue
Expand Down
9 changes: 9 additions & 0 deletions src/TarantoolQueue.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
<?php

/*
* This file is part of the Tarantool Queue package.
*
* (c) Eugene Leonovich <gen.work@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Phive\Queue;

class TarantoolQueue implements Queue
Expand Down
9 changes: 9 additions & 0 deletions src/TypeSafeQueue.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
<?php

/*
* This file is part of the Tarantool Queue package.
*
* (c) Eugene Leonovich <gen.work@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Phive\Queue;

class TypeSafeQueue implements Queue
Expand Down
9 changes: 9 additions & 0 deletions tests/Handler/Handler.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
<?php

/*
* This file is part of the Tarantool Queue package.
*
* (c) Eugene Leonovich <gen.work@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Phive\Queue\Tests\Handler;

use Phive\Queue\Queue;
Expand Down
9 changes: 9 additions & 0 deletions tests/Handler/MongoHandler.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
<?php

/*
* This file is part of the Tarantool Queue package.
*
* (c) Eugene Leonovich <gen.work@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Phive\Queue\Tests\Handler;

use Phive\Queue\MongoQueue;
Expand Down
9 changes: 9 additions & 0 deletions tests/Handler/PdoHandler.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
<?php

/*
* This file is part of the Tarantool Queue package.
*
* (c) Eugene Leonovich <gen.work@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Phive\Queue\Tests\Handler;

use Phive\Queue\Queue;
Expand Down
9 changes: 9 additions & 0 deletions tests/Handler/PheanstalkHandler.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
<?php

/*
* This file is part of the Tarantool Queue package.
*
* (c) Eugene Leonovich <gen.work@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Phive\Queue\Tests\Handler;

use Pheanstalk\Exception\ServerException;
Expand Down
9 changes: 9 additions & 0 deletions tests/Handler/RedisHandler.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
<?php

/*
* This file is part of the Tarantool Queue package.
*
* (c) Eugene Leonovich <gen.work@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Phive\Queue\Tests\Handler;

use Phive\Queue\RedisQueue;
Expand Down
9 changes: 9 additions & 0 deletions tests/Handler/SysVHandler.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
<?php

/*
* This file is part of the Tarantool Queue package.
*
* (c) Eugene Leonovich <gen.work@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Phive\Queue\Tests\Handler;

use Phive\Queue\SysVQueue;
Expand Down
9 changes: 9 additions & 0 deletions tests/Handler/TarantoolHandler.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
<?php

/*
* This file is part of the Tarantool Queue package.
*
* (c) Eugene Leonovich <gen.work@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Phive\Queue\Tests\Handler;

use Phive\Queue\TarantoolQueue;
Expand Down
9 changes: 9 additions & 0 deletions tests/Queue/Concurrency.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
<?php

/*
* This file is part of the Tarantool Queue package.
*
* (c) Eugene Leonovich <gen.work@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Phive\Queue\Tests\Queue;

trait Concurrency
Expand Down
9 changes: 9 additions & 0 deletions tests/Queue/ExceptionalQueueTest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
<?php

/*
* This file is part of the Tarantool Queue package.
*
* (c) Eugene Leonovich <gen.work@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Phive\Queue\Tests\Queue;

use Phive\Queue\ExceptionalQueue;
Expand Down
9 changes: 9 additions & 0 deletions tests/Queue/InMemoryQueueTest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
<?php

/*
* This file is part of the Tarantool Queue package.
*
* (c) Eugene Leonovich <gen.work@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Phive\Queue\Tests\Queue;

use Phive\Queue\InMemoryQueue;
Expand Down
9 changes: 9 additions & 0 deletions tests/Queue/MongoQueueTest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
<?php

/*
* This file is part of the Tarantool Queue package.
*
* (c) Eugene Leonovich <gen.work@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Phive\Queue\Tests\Queue;

use Phive\Queue\Tests\Handler\MongoHandler;
Expand Down
Loading

0 comments on commit 26b7c0e

Please sign in to comment.