HOR-3502 HOR-2043

This commit is contained in:
dev-ronald
2017-07-21 16:56:44 -04:00
committed by Ronald Quenta
parent a500ec3ea1
commit 519e9e477f
36 changed files with 5242 additions and 97 deletions

View File

@@ -0,0 +1,17 @@
<?php
namespace ProcessMaker\Plugins\Interfaces;
class OpenReassignCallback
{
public $callBackFile;
/**
* This function is the constructor of the cronFile class
* @param string $callBackFile
*/
public function __construct($callBackFile)
{
$this->callBackFile = $callBackFile;
}
}