Skip to content
This repository has been archived by the owner on Nov 26, 2023. It is now read-only.

Commit

Permalink
Initial version
Browse files Browse the repository at this point in the history
  • Loading branch information
putna committed Sep 17, 2014
1 parent 3b76d02 commit b597c3b
Show file tree
Hide file tree
Showing 18 changed files with 994 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.idea
.DS_Store
._.*
vendor
composer.lock
composer.phar
18 changes: 18 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
language: php

php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm

before_script:
- composer self-update
- composer install --no-interaction --prefer-source --dev

script:
- ./vendor/bin/phpunit

notifications:
email: false
18 changes: 18 additions & 0 deletions Queue/Exception.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?php
/*
* This file is part of Queue Manager.
*
* (c) 2011 SparkleBit <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Queue;

/**
* Exception class for Queue Namespace.
*
* @author Andrius Putna <[email protected]>
*/
class Exception extends \Exception {}
Loading

0 comments on commit b597c3b

Please sign in to comment.