for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @package File manager
* @author Iurii Makukh <[email protected]>
* @copyright Copyright (c) 2017, Iurii Makukh <[email protected]>
* @license https://www.gnu.org/licenses/gpl-3.0.en.html GPL-3.0+
*/
namespace gplcart\modules\file_manager\handlers\validators;
use gplcart\core\handlers\validator\Element;
* Provides methods to validate "delete" command
class Delete extends Element
{
* @return boolean
public function validateDelete()
return true;
}