예제 #1
0
파일: daydream.php 프로젝트: tacone/bees
 public function getResourcesCollection()
 {
     $collection = new Endpoint(new Customer());
     $collection->string('name', 'first_name');
     $collection->boolean('published', true);
     $collection->dateTime('updated', 'Last update');
     return $collection;
 }