escape spaces in folders
[ouya-imagestore.git] / src / imagestore / Controller / Api / Likes.php
1 <?php
2 namespace imagestore;
3
4 class Controller_Api_Likes
5 {
6     public function handle()
7     {
8         $likes = (object) array(
9             'likes' => array()
10         );
11         header('Content-Type: application/json');
12         echo json_encode($likes, JSON_PRETTY_PRINT);
13     }
14 }
15 ?>