susina/psr2-code-generator

View on GitHub
src/Model/Parts/FinalPart.php

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
<?php declare(strict_types=1);

namespace Susina\Codegen\Model\Parts;

/**
 * Abstract Part.
 *
 * Keeps track if the model has a final modifier or not
 *
 * @author Thomas Gossmann
 */
trait FinalPart
{
    /** @var bool */
    private $final = false;

    /**
     * Returns whether this is final.
     *
     * @return bool `true` for final and `false` if not
     */
    public function isFinal(): bool
    {
        return $this->final;
    }

    /**
     * Sets this final.
     *
     * @param bool $bool `true` for final and `false` if not
     *
     * @return $this
     */
    public function setFinal(bool $bool): self
    {
        $this->final = (bool) $bool;

        return $this;
    }
}