for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Serialize;
abstract class Serializer implements ISerializer
{
protected $types;
public function supportsType($type)
foreach($this->types as $t)
if(strcasecmp($t, $type) === 0)
return true;
}
return false;