سلام
سوال من مربوط به این جلسه نیست اما جای بهتری هم پیدا نکردم!
من دارم یک روتینگ مینویسم و شبیه به لاراول از توابع بدون نام استفاده میکنم برای روتها اما به ی مشکل بر خوردم :
کد صفحه web (جایی که روتها رو مینویسیم) :
use system\Routing\Web\Route;
Route::prefix('admin')->group(function (){
Route::get('/','HomeController@index');
Route::any('/any','HomeController@any');
});
اینجا زمانی که prefix رو میزارم و مقدار بهش میدم به این شکل بعد اون group رو صدا میزنم و داخل کالبک اون متود get رو صدا میکنم و یا هر متد دیگه prefix رو null بر میگردونه اما اگر به صورت زیر بدم مقدار prefix رو بهم میده :
Route::prefix('admin')->get('/','HomeController@index');
چرا این اتفاق میفته در ادامه بقیه کدها رو هم میزارم :
کد کلاس Route :
<?php
namespace system\Routing\Web;
use system\Routing\Web\Traits\HasMethodCaller;
use system\Routing\Web\Traits\Tools;
class Route
{
use Tools,HasMethodCaller;
protected $prefix;
}
تریت HasMethodCaller :
<?php
namespace system\Routing\Web\Traits;
trait HasMethodCaller
{
public static function __callStatic($name, $arguments)
{
$class = get_called_class();
$instance = new $class();
return $instance->methodCaller($instance,$name,$arguments);
}
public function __call($name, $arguments)
{
return $this->methodCaller($this,$name,$arguments);
}
protected function methodCaller($object,$methodName,$args)
{
$name=$methodName."Method";
return call_user_func_array([$object,$name],$args);
}
}
تریت Tools :
<?php
namespace system\Routing\Web\Traits;
trait Tools
{
/**
* @param callable $callback
* @return $this
*/
protected function groupMethod(callable $callback)
{
$callback();
return $this;
}
/**
* @param string $prefix
* @return $this
*/
protected function prefixMethod(string $prefix)
{
$this->prefix = $prefix;
return $this;
}
/**
* @param string $route
* @param string $actions
*/
protected function getMethod(string $route, string $actions)
{
$r = $this->prefix."\".$actions;
d($r);
return $this;
}
/**
* @param string $route
* @param string $actions
* @return $this
*/
protected function postMethod(string $route, string $actions)
{
d($route,$actions);
return $this;
}
/**
* @param string $route
* @param string $actions
* @return $this
*/
protected function putMethod(string $route, string $actions)
{
d($route,$actions);
return $this;
}
/**
* @param string $route
* @param string $actions
* @return $this
*/
protected function patchMethod(string $route, string $actions)
{
d($route,$actions);
return $this;
}
/**
* @param string $route
* @param string $actions
* @return $this
*/
protected function deleteMethod(string $route, string $actions)
{
d($route,$actions);
return $this;
}
/**
* @param string $route
* @param string $actions
* @return $this
*/
protected function anyMethod(string $route, string $actions)
{
d($this->prefix,$route,$actions);
return $this;
}
}
چطوری میتونم به این شکل مقدار پراپرتی prefix رو در همه جا داشته باشم ؟