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 2, 2015
1 parent ce216cf commit f55e08a
Show file tree
Hide file tree
Showing 11 changed files with 99 additions and 0 deletions.
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 Tarantool\Queue;

class Queue
Expand Down
9 changes: 9 additions & 0 deletions src/States.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 Tarantool\Queue;

abstract class States
Expand Down
9 changes: 9 additions & 0 deletions src/Task.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 Tarantool\Queue;

final class Task
Expand Down
9 changes: 9 additions & 0 deletions tests/Integration/FifoQueueTest.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 Tarantool\Queue\Tests\Integration;

class FifoQueueTest extends QueueTest
Expand Down
9 changes: 9 additions & 0 deletions tests/Integration/FifottlQueueTest.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 Tarantool\Queue\Tests\Integration;

class FifottlQueueTest extends QueueTest
Expand Down
9 changes: 9 additions & 0 deletions tests/Integration/QueueTest.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 Tarantool\Queue\Tests\Integration;

use Tarantool\Queue\Queue;
Expand Down
9 changes: 9 additions & 0 deletions tests/Integration/Ttl.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 Tarantool\Queue\Tests\Integration;

trait Ttl
Expand Down
9 changes: 9 additions & 0 deletions tests/Integration/UtubeQueueTest.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 Tarantool\Queue\Tests\Integration;

class UtubeQueueTest extends QueueTest
Expand Down
9 changes: 9 additions & 0 deletions tests/Integration/UtubettlQueueTest.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 Tarantool\Queue\Tests\Integration;

class UtubettlQueueTest extends QueueTest
Expand Down
9 changes: 9 additions & 0 deletions tests/Unit/QueueTest.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 Tarantool\Queue\Tests\Unit;

use Tarantool\Queue\Queue;
Expand Down
9 changes: 9 additions & 0 deletions tests/Unit/TaskTest.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 Tarantool\Queue\Tests\Unit;

use Tarantool\Queue\States;
Expand Down

0 comments on commit f55e08a

Please sign in to comment.