for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* IConfirmer.php
*
* @copyright More in license.md
* @license https://www.ipublikuj.eu
* @author Adam Kadlec <[email protected]>
* @package iPublikuj:ConfirmationDialog!
* @subpackage Components
* @since 1.0.0
* @date 31.01.15
*/
declare(strict_types = 1);
namespace IPub\ConfirmationDialog\Components;
* Confirmer control factory
interface IConfirmer
{
* @param string|NULL $templateFile
* @return Confirmer
public function create(?string $templateFile = NULL) : Confirmer;
}