for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php /** @noinspection PhpUnusedPrivateFieldInspection */
/**
* citeproc-php
*
* @link http://github.com/seboettg/citeproc-php for the source repository
* @copyright Copyright (c) 2016 Sebastian Böttger.
* @license https://opensource.org/licenses/MIT
*/
namespace Seboettg\CiteProc\Locale;
use InvalidArgumentException;
* Class Term
* @package Seboettg\CiteProc\Locale
* @author Sebastian Böttger <[email protected]>
class Term
{
private $name = "";
private $form = "long";
private $single = "";
private $multiple = "";
private $match = "";
private $genderForm = "";
private $gender = "";
public function __set($name, $value)
$nameParts = explode("-", $name);
$attr = "";
for ($i = count($nameParts) - 1; $i >= 0; --$i) {
if ($i > 0) {
$attr = ucfirst($nameParts[$i]) . $attr;
} else {
$attr = $nameParts[$i] . $attr;
}
if (!isset($this->{$attr})) {
throw new InvalidArgumentException("Property \"$attr\" ($name) does not exist in " . __CLASS__);
$this->{$attr} = $value;
public function __get($name)
return $this->{$name};
* @return string
public function getName()
return $this->name;