for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @category Brownie/BpmOnline
* @author Brownie <[email protected]>
* @license https://opensource.org/licenses/MIT
*/
namespace Brownie\BpmOnline\DataService\Column;
class ColumnExpression
{
private $columnExpressions = [];
public function __construct(Expression $_ = null)
$_
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
$this->columnExpressions = func_get_args();
}
public function toArray()
$expressions = [];
* @var Expression $expression
foreach ($this->columnExpressions as $expression) {
$expressions[$expression->getKeyName()] = $expression->getValue();
return $expressions;
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.