Skip to content

Commit

Permalink
--- VERSION 2.0 ---
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskonnertz committed Sep 20, 2017
1 parent 717665f commit dca76c4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/ChrisKonnertz/Jobs/Jobs.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class Jobs
/**
* The current version of this library
*/
const version = '2.0';
const version = '2.1';

/**
* The cache object
Expand Down Expand Up @@ -54,7 +54,7 @@ public function __construct(CacheInterface $cache)
*
* @return string
*/
public function getChacheKey()
public function getCacheKey()
{
return $this->cacheKey;
}
Expand Down
3 changes: 1 addition & 2 deletions src/ChrisKonnertz/Jobs/JobsCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
use Illuminate\Console\Command;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Input\InputArgument;
use Cache;

class JobsCommand extends Command
{
Expand Down Expand Up @@ -46,7 +45,7 @@ public function fire()
if ($counter === false) {
$this->error('Job executor needs a cool down! No jobs executed.');
} else {
$this->info('Done. Jobs executed: '.$counter.'/'.JobsFacade::count());
$this->info('Done. Jobs executed: '.$counter.'/'.JobsFacade::count());
}
}

Expand Down
1 change: 0 additions & 1 deletion src/ChrisKonnertz/Jobs/JobsServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

namespace ChrisKonnertz\Jobs;

use ChrisKonnertz\Jobs\Jobs;
use Illuminate\Support\ServiceProvider;

class JobsServiceProvider extends ServiceProvider
Expand Down

1 comment on commit dca76c4

@chriskonnertz
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

2.1 ...

Please sign in to comment.