v1.0.0 initial release
This commit is contained in:
+53
@@ -0,0 +1,53 @@
|
||||
<?php
|
||||
|
||||
namespace Illuminate\Support;
|
||||
|
||||
use Illuminate\Support\Defer\DeferredCallback;
|
||||
use Illuminate\Support\Defer\DeferredCallbackCollection;
|
||||
use Symfony\Component\Process\PhpExecutableFinder;
|
||||
|
||||
if (! function_exists('Illuminate\Support\defer')) {
|
||||
/**
|
||||
* Defer execution of the given callback.
|
||||
*
|
||||
* @param callable|null $callback
|
||||
* @param string|null $name
|
||||
* @param bool $always
|
||||
* @return \Illuminate\Support\Defer\DeferredCallback
|
||||
*/
|
||||
function defer(?callable $callback = null, ?string $name = null, bool $always = false)
|
||||
{
|
||||
if ($callback === null) {
|
||||
return app(DeferredCallbackCollection::class);
|
||||
}
|
||||
|
||||
return tap(
|
||||
new DeferredCallback($callback, $name, $always),
|
||||
fn ($deferred) => app(DeferredCallbackCollection::class)[] = $deferred
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
if (! function_exists('Illuminate\Support\php_binary')) {
|
||||
/**
|
||||
* Determine the PHP Binary.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
function php_binary()
|
||||
{
|
||||
return (new PhpExecutableFinder)->find(false) ?: 'php';
|
||||
}
|
||||
}
|
||||
|
||||
if (! function_exists('Illuminate\Support\artisan_binary')) {
|
||||
/**
|
||||
* Determine the proper Artisan executable.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
function artisan_binary()
|
||||
{
|
||||
return defined('ARTISAN_BINARY') ? ARTISAN_BINARY : 'artisan';
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user