refactor: Update source code based on PHP conventions.

This commit is contained in:
Pol Dellaiera
2021-04-26 15:45:05 +02:00
parent 535f57bb68
commit 7fbb8a9fb0
782 changed files with 53250 additions and 53627 deletions

View File

@@ -1,23 +1,29 @@
<?php
/*
*
*/
namespace Chill\AMLI\BudgetBundle\Calculator;
/**
*
* Chill is a software for social workers.
*
* @author Julien Fastré <julien.fastre@champs-libres.coop>
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*
* @see https://www.champs-libres.coop/
*/
declare(strict_types=1);
namespace Chill\AMLI\BudgetBundle\Calculator;
class CalculatorResult
{
const TYPE_RATE = 'rate';
const TYPE_CURRENCY = 'currency';
const TYPE_PERCENTAGE = 'percentage';
public $type;
public $result;
public const TYPE_CURRENCY = 'currency';
public const TYPE_PERCENTAGE = 'percentage';
public const TYPE_RATE = 'rate';
public $label;
public $result;
public $type;
}