for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* IControl.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 12.03.14
*/
declare(strict_types = 1);
namespace IPub\ConfirmationDialog\Components;
* Dialog control factory
interface IControl
{
* @param string|NULL $layoutFile
* @param string|NULL $templateFile
* @return Control
public function create(?string $layoutFile = NULL, ?string $templateFile = NULL) : Control;
}