aeyoll/SymfonyPhpSpecGeneratorBundle

View on GitHub
src/Statements/ItsFieldsAreMutableStatement.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Aeyoll\SymfonyPhpSpecGeneratorBundle\Statements;

class ItsFieldsAreMutableStatement extends Statement
{
    /**
     * {@inheritDoc}
     */
    protected $methodName = 'its_fields_are_mutable';

    /**
     * {@inheritDoc}
     */
    public function initStatements()
    {
        $this->statements = array();
    }
}