-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
15d43af
commit 8d19edc
Showing
6 changed files
with
68 additions
and
16 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the Instabook package. | ||
* | ||
* Description of Book | ||
* | ||
* @author Daniel Gonzalez <daniel.gonzalez@freelancemadrid.es> | ||
* @file Book.php | ||
* @date 28 - Apr - 2012 | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
class Book | ||
{ | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the Instabook package. | ||
* | ||
* Description of BooksCollection | ||
* | ||
* @author Daniel Gonzalez <daniel.gonzalez@freelancemadrid.es> | ||
* @file BooksCollection.php | ||
* @date 28 - Apr - 2012 | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
class BooksCollection | ||
{ | ||
//put your code here | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the Instabook package. | ||
* | ||
* Description of BooksService | ||
* | ||
* @author Daniel Gonzalez <daniel.gonzalez@freelancemadrid.es> | ||
* @file BooksService.php | ||
* @date 28 - Apr - 2012 | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
class BooksService | ||
{ | ||
|
||
public function __construct() | ||
{ | ||
; | ||
} | ||
|
||
public function search() | ||
{ | ||
|
||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<?php | ||
|
||
require_once(dirname(__FILE__) .'/../../models/Book.php'); |