PHP code example of imanghafoori / laravel-decorator
1. Go to this page and download the library: Download imanghafoori/laravel-decorator library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
imanghafoori / laravel-decorator example snippets
class UserRepository
{
function find($uid)
{
return User::find($uid);
}
}
class MadUsersController extends Controller
{
function show ($madUserId)
{
$madUser = app()->call('UserRepository@find', ['id' => $madUserId]);
}
}
use Imanghafoori\Decorator\Decorators\DecoratorFactory;
class AppServiceProvider extends ServiceProvider
{
public function boot()
{
$keyMaker = function ($madId) {
return 'mad_user_key_' . $madId;
};
$time = 10;
$decorator = DecoratorFactory::cache($keyMaker, $time);
\Decorator::decorate('UserRepository@find', $decorator);
}
}
app()->call('UserRepository@find', ...
// to :
app('decorator')->call('UserRepository@find', ...
public function boot ()
{
\Decorator::define('myDecoratorName1', 'SomeClass@someMethod');
// or
\Decorator::define('myDecoratorName2', function ($callable) {
return function (...) use ($callable){ ... }
});
}
// You may set multiple decorators on a single method...
\Decorator::decorate('class@method, 'someClass@someOtherDecorator'); // (first)
// or reference the decorator by its name :
\Decorator::decorate('class@method, 'myDecoratorName'); // (second)
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.