mirror of
https://github.com/php-flasher/php-flasher.git
synced 2026-03-31 15:07:47 +01:00
28 lines
402 B
PHP
28 lines
402 B
PHP
<?php
|
|
|
|
namespace Flasher\Prime\Stamp;
|
|
|
|
final class HandlerStamp implements StampInterface
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $handler;
|
|
|
|
/**
|
|
* @param string $handler
|
|
*/
|
|
public function __construct($handler)
|
|
{
|
|
$this->handler = $handler;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getHandler()
|
|
{
|
|
return $this->handler;
|
|
}
|
|
}
|