for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @package Cadmium\System\Schemas
* @author Anton Romanov
* @copyright Copyright (c) 2015-2017, Anton Romanov
* @link http://cadmium-cms.com
*/
namespace Schemas\Prototype {
use Utils\Schema;
class Language extends Schema\_Object {
* Constructor
public function __construct() {
$this->addString('name');
$this->addString('iso');
$this->addString('country');
$this->addString('title');
$this->addString('author');
}