for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Hexogen\KDTree;
class ItemFactory implements ItemFactoryInterface
{
public function make(int $id, array $dValues) : ItemInterface
return new Item($id, $dValues);
}