for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Raidros\Storer;
class Header
{
protected $header;
/**
* Configure a new api header.
*
* @param mixed $value
*/
public function __construct($value)
$this->header = $value;
}
* Return the header data.
* @return mixed
public function get()
return $this->header;