for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* TConfirmationDialog.php
*
* @copyright More in license.md
* @license https://www.ipublikuj.eu
* @author Adam Kadlec <[email protected]>
* @package iPublikuj:ConfirmationDialog!
* @subpackage common
* @since 1.0.0
* @date 01.02.15
*/
declare(strict_types = 1);
namespace IPub\ConfirmationDialog;
use IPub\ConfirmationDialog\Components;
* Confirmation control trait
trait TConfirmationDialog
{
* @var Components\IControl
protected $confirmationDialogFactory;
* @param Components\IControl $confirmationDialogFactory
* @return void
public function injectConfirmationDialog(Components\IControl $confirmationDialogFactory) : void
$this->confirmationDialogFactory = $confirmationDialogFactory;
}