2013-05-14 12:06:44 -07:00

12 lines
122 B
PHP
Executable File

<?php
namespace RESTful;
class Fields
{
public function __get($name)
{
return new Field($name);
}
}