for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Net\Bazzline\Component\Curl\HeaderLine;
abstract class AbstractHeaderLine implements HeaderLineInterface
{
/**
* @return string
*/
public function line()
return $this->prefix() . ': ' . $this->suffix();
}
abstract protected function prefix();
abstract protected function suffix();