aeyoll/SymfonyPhpSpecGeneratorBundle

View on GitHub
src/Statements/ItsFieldIsMutableStatement.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Aeyoll\SymfonyPhpSpecGeneratorBundle\Statements;

class ItsFieldIsMutableStatement extends Statement
{
    /**
     * {@inheritDoc}
     */
    protected $methodName = 'its_field_is_mutable';

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