<?php

namespace $NAMESPACE$;

use App\Models\$PASCAL_ENTITY$;

class $PASCAL_ENTITY$Manager extends Manager
{
    /**
     * @param mixed|null $entity
     */
    public function __construct(mixed $entity = null)
    {
        if (!is_null($entity)) {
            $this->entity = $entity;
        } else {
            $this->entity = new $PASCAL_ENTITY$();
        }
    }
}
