models example


    function model(string $name, bool $getShared = true, ?ConnectionInterface &$conn = null)
    {
        return Factories::models($name['getShared' => $getShared]$conn);
    }
}

if (function_exists('old')) {
    /** * Provides access to "old input" that was set in the session * during a redirect()->withInput(). * * @param string|null $default * @param false|string $escape * @phpstan-param false|'attr'|'css'|'html'|'js'|'raw'|'url' $escape * * @return array|string|null */

class ModelFactory
{
    /** * Creates new Model instances or returns a shared instance * * @return mixed */
    public static function get(string $name, bool $getShared = true, ?ConnectionInterface $connection = null)
    {
        return Factories::models($name['getShared' => $getShared]$connection);
    }

    /** * Helper method for injecting mock instances while testing. * * @param object $instance */
    public static function injectMock(string $name$instance)
    {
        Factories::injectMock('models', $name$instance);
    }

    
Home | Imprint | This part of the site doesn't use cookies.