Skip to content

Commit

Permalink
Updated namespace because we moved this in v1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbjr committed Mar 27, 2015
1 parent cb16150 commit 06bccb2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ By default, all the methods in the ApiGuardController will be authenticated. To
```php
<?php

use Chrisbjr\ApiGuard\ApiGuardController;
use Chrisbjr\ApiGuard\Controllers\ApiGuardController;

class BooksController extends ApiGuardController
{
Expand Down Expand Up @@ -179,7 +179,7 @@ This will allow you to specify a level for your API key and if the method has a
```php
<?php

use Chrisbjr\ApiGuard\ApiGuardController;
use Chrisbjr\ApiGuard\Controllers\ApiGuardController;

class BooksController extends ApiGuardController
{
Expand All @@ -205,7 +205,7 @@ You can limit the rate at which an API key can have access to a particular metho
```php
<?php

use Chrisbjr\ApiGuard\ApiGuardController;
use Chrisbjr\ApiGuard\Controllers\ApiGuardController;

class BooksController extends ApiGuardController
{
Expand Down Expand Up @@ -237,7 +237,7 @@ There is also an option to limit the request rate for a given method no matter w
```php
<?php

use Chrisbjr\ApiGuard\ApiGuardController;
use Chrisbjr\ApiGuard\Controllers\ApiGuardController;

class BooksController extends ApiGuardController
{
Expand Down Expand Up @@ -271,8 +271,8 @@ Note that while we have utilized [Confide](https://github.com/zizaco/confide) fo
```php
<?php namespace api\v1;

use Chrisbjr\ApiGuard\ApiGuardController;
use Chrisbjr\ApiGuard\ApiKey;
use Chrisbjr\ApiGuard\Controllers\ApiGuardController;
use Chrisbjr\ApiGuard\Models\ApiKey;
use Chrisbjr\ApiGuard\Transformers\ApiKeyTransformer;
use Confide;
use Input;
Expand Down

0 comments on commit 06bccb2

Please sign in to comment.