diff options
author | Nicolas Lœuillet <nicolas.loeuillet@gmail.com> | 2013-08-07 14:24:07 +0200 |
---|---|---|
committer | Nicolas Lœuillet <nicolas.loeuillet@gmail.com> | 2013-08-07 14:24:07 +0200 |
commit | bc1ee8524e0769ad37e3c4c02cfe96d2f60e52f6 (patch) | |
tree | 5ea9d0f0560e84c07ab84c86b9e5fd4dd6ebb039 /inc/store/store.class.php | |
parent | 8d3275bee488d058c6ff0efe6e81d20a584d3709 (diff) | |
download | wallabag-bc1ee8524e0769ad37e3c4c02cfe96d2f60e52f6.tar.gz wallabag-bc1ee8524e0769ad37e3c4c02cfe96d2f60e52f6.tar.zst wallabag-bc1ee8524e0769ad37e3c4c02cfe96d2f60e52f6.zip |
postgres
Diffstat (limited to 'inc/store/store.class.php')
-rw-r--r-- | inc/store/store.class.php | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/inc/store/store.class.php b/inc/store/store.class.php deleted file mode 100644 index d6e63014..00000000 --- a/inc/store/store.class.php +++ /dev/null | |||
@@ -1,55 +0,0 @@ | |||
1 | <?php | ||
2 | /** | ||
3 | * poche, a read it later open source system | ||
4 | * | ||
5 | * @category poche | ||
6 | * @author Nicolas Lœuillet <support@inthepoche.com> | ||
7 | * @copyright 2013 | ||
8 | * @license http://www.wtfpl.net/ see COPYING file | ||
9 | */ | ||
10 | |||
11 | class Store { | ||
12 | function __construct() { | ||
13 | |||
14 | } | ||
15 | |||
16 | public function login() { | ||
17 | |||
18 | } | ||
19 | |||
20 | public function add() { | ||
21 | |||
22 | } | ||
23 | |||
24 | public function retrieveAll() { | ||
25 | |||
26 | } | ||
27 | |||
28 | public function retrieveOneById($id) { | ||
29 | |||
30 | } | ||
31 | |||
32 | public function retrieveOneByURL($url) { | ||
33 | |||
34 | } | ||
35 | |||
36 | public function deleteById($id) { | ||
37 | |||
38 | } | ||
39 | |||
40 | public function favoriteById($id) { | ||
41 | |||
42 | } | ||
43 | |||
44 | public function archiveById($id) { | ||
45 | |||
46 | } | ||
47 | |||
48 | public function getEntriesByView($view) { | ||
49 | |||
50 | } | ||
51 | |||
52 | public function getLastId() { | ||
53 | |||
54 | } | ||
55 | } | ||