mirror of
https://github.com/hauke68/Magallanes.git
synced 2026-08-28 18:18:57 +02:00
Big refactoring. Use of Namespaces and codestyles. PSR-0, PSR-1, PSR-2.
This commit is contained in:
@@ -8,6 +8,13 @@
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
interface Mage_Task_Releases_BuiltIn
|
||||
namespace Mage\Task\Releases;
|
||||
|
||||
/**
|
||||
* Indicates that the Task is Relase Aware/Dependant
|
||||
*
|
||||
* @author Andrés Montañez <andres@andresmontanez.com>
|
||||
*/
|
||||
interface IsReleaseAware
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -8,6 +8,13 @@
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
interface Mage_Task_Releases_RollbackAware
|
||||
namespace Mage\Task\Releases;
|
||||
|
||||
/**
|
||||
* Indicates that the Task is Aware of Rollbacks
|
||||
*
|
||||
* @author Andrés Montañez <andres@andresmontanez.com>
|
||||
*/
|
||||
interface RollbackAware
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
@@ -8,6 +8,13 @@
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
interface Mage_Task_Releases_SkipOnOverride
|
||||
namespace Mage\Task\Releases;
|
||||
|
||||
/**
|
||||
* Indicates that the Task will be Skipped on Relase Override
|
||||
*
|
||||
* @author Andrés Montañez <andres@andresmontanez.com>
|
||||
*/
|
||||
interface SkipOnOverride
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user