for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PTS\Routing\Point;
abstract class AbstractPoint
{
/**
* @param array $params
*/
public function __construct(array $params = [])
foreach ($params as $name => $param) {
if (property_exists($this, $name)) {
$this->{$name} = $param;
}