Skip to content

Commit

Permalink
Merge pull request #1 from chrispitt/master
Browse files Browse the repository at this point in the history
Fixing resolution errors in L4 integration.
  • Loading branch information
jasonlewis committed Sep 25, 2013
2 parents fda86c8 + 9b1faae commit 829fa4b
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<?php namespace JasonLewis\ResourceWatcher\Integration;

use Illuminate\Support\ServiceProvider;
use JasonLewis\ResourceWatcher\Tracker;
use JasonLewis\ResourceWatcher\Watcher;

class LaravelServiceProvider extends ServiceProvider {

Expand All @@ -22,7 +24,7 @@ public function register()
{
$tracker = new Tracker;

return new ResourceWatcher($tracker, $app['files']);
return new Watcher($tracker, $app['files']);
});
}

Expand All @@ -36,4 +38,4 @@ public function provides()
return array('watcher');
}

}
}

0 comments on commit 829fa4b

Please sign in to comment.