for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
namespace WyriHaximus\React\Cake\Orm;
final class GeneratedTable
{
/**
* @var string
*/
private $namespace;
private $className;
* @param string $namespace
* @param string $className
public function __construct($namespace, $className)
$this->namespace = $namespace;
$this->className = $className;
}
* @return string
public function getNamespace()
return $this->namespace;
public function getClassName()
return $this->className;
public function getFQCN()
return $this->namespace . '\\' . $this->className;