Skip to content

Commit

Permalink
DOCBlock round...
Browse files Browse the repository at this point in the history
  • Loading branch information
wtfzdotnet committed Nov 16, 2013
1 parent d3dcb9e commit 3a32c4c
Show file tree
Hide file tree
Showing 11 changed files with 65 additions and 39 deletions.
1 change: 0 additions & 1 deletion lib/Tmdb/Api/ApiInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
* @copyright (c) 2013, Michael Roterman
* @version 0.0.1
*/

namespace Tmdb\Api;

interface ApiInterface {
Expand Down
11 changes: 5 additions & 6 deletions lib/Tmdb/Factory/AbstractFactory.php
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
<?php
/**
* This file is part of the Wrike PHP API created by B-Found IM&S.
* This file is part of the Tmdb PHP API created by Michael Roterman.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @package Wrike
* @author Michael Roterman <michael@b-found.nl>
* @copyright (c) 2013, B-Found Internet Marketing & Services
*
* @package Tmdb
* @author Michael Roterman <michael@wtfz.net>
* @copyright (c) 2013, Michael Roterman
* @version 0.0.1
*/

namespace Tmdb\Factory;

abstract class AbstractFactory {
Expand Down
11 changes: 5 additions & 6 deletions lib/Tmdb/Factory/GenreFactory.php
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
<?php
/**
* This file is part of the Wrike PHP API created by B-Found IM&S.
* This file is part of the Tmdb PHP API created by Michael Roterman.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @package Wrike
* @author Michael Roterman <michael@b-found.nl>
* @copyright (c) 2013, B-Found Internet Marketing & Services
*
* @package Tmdb
* @author Michael Roterman <michael@wtfz.net>
* @copyright (c) 2013, Michael Roterman
* @version 0.0.1
*/

namespace Tmdb\Factory;

use Tmdb\Model\Collection\Genres;
Expand Down
11 changes: 5 additions & 6 deletions lib/Tmdb/Factory/Movie/AlternativeTitleFactory.php
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
<?php
/**
* This file is part of the Wrike PHP API created by B-Found IM&S.
* This file is part of the Tmdb PHP API created by Michael Roterman.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @package Wrike
* @author Michael Roterman <michael@b-found.nl>
* @copyright (c) 2013, B-Found Internet Marketing & Services
*
* @package Tmdb
* @author Michael Roterman <michael@wtfz.net>
* @copyright (c) 2013, Michael Roterman
* @version 0.0.1
*/

namespace Tmdb\Factory\Movie;

use Tmdb\Factory\AbstractFactory;
Expand Down
11 changes: 5 additions & 6 deletions lib/Tmdb/Factory/MovieFactory.php
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
<?php
/**
* This file is part of the Wrike PHP API created by B-Found IM&S.
* This file is part of the Tmdb PHP API created by Michael Roterman.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @package Wrike
* @author Michael Roterman <michael@b-found.nl>
* @copyright (c) 2013, B-Found Internet Marketing & Services
*
* @package Tmdb
* @author Michael Roterman <michael@wtfz.net>
* @copyright (c) 2013, Michael Roterman
* @version 0.0.1
*/

namespace Tmdb\Factory;

use Tmdb\Api\Movies;
Expand Down
11 changes: 5 additions & 6 deletions lib/Tmdb/Factory/People/CastFactory.php
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
<?php
/**
* This file is part of the Wrike PHP API created by B-Found IM&S.
* This file is part of the Tmdb PHP API created by Michael Roterman.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @package Wrike
* @author Michael Roterman <michael@b-found.nl>
* @copyright (c) 2013, B-Found Internet Marketing & Services
*
* @package Tmdb
* @author Michael Roterman <michael@wtfz.net>
* @copyright (c) 2013, Michael Roterman
* @version 0.0.1
*/

namespace Tmdb\Factory\People;

use Tmdb\Factory\AbstractFactory;
Expand Down
11 changes: 5 additions & 6 deletions lib/Tmdb/Factory/People/CrewFactory.php
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
<?php
/**
* This file is part of the Wrike PHP API created by B-Found IM&S.
* This file is part of the Tmdb PHP API created by Michael Roterman.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @package Wrike
* @author Michael Roterman <michael@b-found.nl>
* @copyright (c) 2013, B-Found Internet Marketing & Services
*
* @package Tmdb
* @author Michael Roterman <michael@wtfz.net>
* @copyright (c) 2013, Michael Roterman
* @version 0.0.1
*/

namespace Tmdb\Factory\People;

use Tmdb\Factory\AbstractFactory;
Expand Down
11 changes: 11 additions & 0 deletions lib/Tmdb/Model/Movie/QueryParameter/AppendToResponse.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
<?php
/**
* This file is part of the Tmdb PHP API created by Michael Roterman.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @package Tmdb
* @author Michael Roterman <[email protected]>
* @copyright (c) 2013, Michael Roterman
* @version 0.0.1
*/
namespace Tmdb\Model\Movie\QueryParameter;

use Tmdb\Model\Common\QueryParameter\AppendToResponse as BaseAppendToResponse;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
*/
namespace Tmdb\Model\Tv;

use Tmdb\Model\Common\People\Cast as BaseCast;
use Tmdb\Model\Person\CastMember as BaseCastMember;

class Cast extends BaseCast {
class CastMember extends BaseCastMember {

}
11 changes: 11 additions & 0 deletions lib/Tmdb/Model/Tv/QueryParameter/AppendToResponse.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
<?php
/**
* This file is part of the Tmdb PHP API created by Michael Roterman.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @package Tmdb
* @author Michael Roterman <[email protected]>
* @copyright (c) 2013, Michael Roterman
* @version 0.0.1
*/
namespace Tmdb\Model\Tv\QueryParameter;

use Tmdb\Model\Common\QueryParameter\AppendToResponse as BaseAppendToResponse;
Expand Down
11 changes: 11 additions & 0 deletions lib/Tmdb/Model/Tv/Season/QueryParameter/AppendToResponse.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
<?php
/**
* This file is part of the Tmdb PHP API created by Michael Roterman.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @package Tmdb
* @author Michael Roterman <[email protected]>
* @copyright (c) 2013, Michael Roterman
* @version 0.0.1
*/
namespace Tmdb\Model\Tv\Season\QueryParameter;

use Tmdb\Model\Tv\QueryParameter\AppendToResponse as BaseAppendToResponse;
Expand Down

0 comments on commit 3a32c4c

Please sign in to comment.