Skip to content

Commit

Permalink
Fix a couple naming issues
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffreyWay committed Feb 6, 2015
1 parent 6dfff26 commit 2d7dcc9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Begin by installing this package through Composer.
}
```

> If you use Laravel 4 users: instead install `~1.0` of this package. For Laravel 5 (or non-Laravel), `~2.0` will do the trick!
> If you use Laravel 4 users: instead install `~1.0` of this package (and use the documentation for that release). For Laravel 5 (or non-Laravel), `~2.0` will do the trick!
### Laravel Users

Expand All @@ -31,7 +31,7 @@ If you are a Laravel user, there is a service provider you can make use of to au

'providers' => [
'...',
'Laracasts\Utilities\UtilitiesServiceProvider'
'Laracasts\Utilities\JavaScript\JavaScriptServiceProvider'
];
```

Expand Down
2 changes: 1 addition & 1 deletion src/JavaScriptFacade.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Laracasts\Utilities\JavaScript\Facades;
namespace Laracasts\Utilities\JavaScript;

use Illuminate\Support\Facades\Facade;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<?php

namespace Laracasts\Utilities;
namespace Laracasts\Utilities\JavaScript;

use Illuminate\Foundation\AliasLoader;
use Illuminate\Support\ServiceProvider;
use Laracasts\Utilities\JavaScript\PHPToJavaScriptTransformer;
use Laracasts\Utilities\JavaScript\LaravelViewBinder;

class UtilitiesServiceProvider extends ServiceProvider
class JavaScriptServiceProvider extends ServiceProvider
{

/**
Expand Down

0 comments on commit 2d7dcc9

Please sign in to comment.