imanghafoori1/laravel-heyman

View on GitHub
src/helpers.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

if (! function_exists('resolve')) {
    /**
     * Resolve a service from the container.
     *
     * @param  string  $name
     * @return mixed
     */
    function resolve($name)
    {
        return app($name);
    }
}