mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-18 11:30:55 +01:00
12 lines
122 B
PHP
12 lines
122 B
PHP
|
<?php
|
||
|
|
||
|
namespace RESTful;
|
||
|
|
||
|
class Fields
|
||
|
{
|
||
|
public function __get($name)
|
||
|
{
|
||
|
return new Field($name);
|
||
|
}
|
||
|
}
|