Rajout du dossier core + MAJ .gitignore
This commit is contained in:
35
core/lib/Thelia/Condition/ConditionOrganizer.php
Normal file
35
core/lib/Thelia/Condition/ConditionOrganizer.php
Normal file
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/*************************************************************************************/
|
||||
/* This file is part of the Thelia package. */
|
||||
/* */
|
||||
/* Copyright (c) OpenStudio */
|
||||
/* email : dev@thelia.net */
|
||||
/* web : http://www.thelia.net */
|
||||
/* */
|
||||
/* For the full copyright and license information, please view the LICENSE.txt */
|
||||
/* file that was distributed with this source code. */
|
||||
/*************************************************************************************/
|
||||
|
||||
namespace Thelia\Condition;
|
||||
|
||||
/**
|
||||
* Manage how Condition could interact with each others
|
||||
*
|
||||
* @package Condition
|
||||
* @author Guillaume MOREL <gmorel@openstudio.fr>
|
||||
*
|
||||
*/
|
||||
class ConditionOrganizer implements ConditionOrganizerInterface
|
||||
{
|
||||
/**
|
||||
* Organize ConditionInterface
|
||||
*
|
||||
* @param array $conditions Array of ConditionInterface
|
||||
*
|
||||
* @return array Array of ConditionInterface sorted
|
||||
*/
|
||||
public function organize(array $conditions)
|
||||
{
|
||||
// @todo: Implement organize() method.
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user