📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
otelscripti.demodesign.com.tr
/
vendor
/
illuminate
/
contracts
/
Bus
📝
Dispatcher.php
← Geri Dön
<?php namespace Illuminate\Contracts\Bus; use Closure; use ArrayAccess; interface Dispatcher { /** * Marshal a command and dispatch it to its appropriate handler. * * @param mixed $command * @param array $array * @return mixed */ public function dispatchFromArray($command, array $array); /** * Marshal a command and dispatch it to its appropriate handler. * * @param mixed $command * @param \ArrayAccess $source * @param array $extras * @return mixed */ public function dispatchFrom($command, ArrayAccess $source, array $extras = []); /** * Dispatch a command to its appropriate handler. * * @param mixed $command * @param \Closure|null $afterResolving * @return mixed */ public function dispatch($command, Closure $afterResolving = null); /** * Dispatch a command to its appropriate handler in the current process. * * @param mixed $command * @param \Closure|null $afterResolving * @return mixed */ public function dispatchNow($command, Closure $afterResolving = null); /** * Set the pipes commands should be piped through before dispatching. * * @param array $pipes * @return $this */ public function pipeThrough(array $pipes); }
💾 Kaydet
İptal
📝 Yeniden Adlandır
İptal
Kaydet
🔐 Dosya İzinleri (chmod)
İzin Değeri:
Hızlı Seçim:
777
755
644
600
777
= Herkes okur/yazar/çalıştırır
755
= Sahip tam, diğerleri okur/çalıştırır
644
= Sahip okur/yazar, diğerleri okur
600
= Sadece sahip okur/yazar
İptal
Uygula