for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* File was created 17.05.2016 06:09
*/
namespace PeekAndPoke\Component\Creator;
* CreateWithDefaultConstructor
*
* @author Karsten J. Gerber <[email protected]>
class CreateWithDefaultConstructor extends AbstractCreator
{
* @inheritdoc
public function create($data = null)
return $this->getClass()->newInstance();
}