修复 blade hook 优先级被覆盖导致插件失效
This commit is contained in:
parent
9529d68d38
commit
e1a4d1b3cc
|
|
@ -64,7 +64,6 @@ class Hook
|
|||
return $this->get($hook, $params, $callback, $htmlContent);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param string $hook
|
||||
* @param array $params
|
||||
|
|
@ -114,11 +113,15 @@ class Hook
|
|||
$priority = null;
|
||||
}
|
||||
|
||||
if (isset($this->watch[$hook][$priority])) {
|
||||
$priority++;
|
||||
}
|
||||
|
||||
$this->watch[$hook][$priority] = [
|
||||
'function' => $function,
|
||||
'caller' => [
|
||||
//'file' => $caller['file'],
|
||||
//'line' => $caller['line'],
|
||||
'file' => $caller['file'],
|
||||
'line' => $caller['line'],
|
||||
'class' => Arr::get($caller, 'class'),
|
||||
],
|
||||
];
|
||||
|
|
|
|||
|
|
@ -19,7 +19,6 @@ class HookServiceProvider extends ServiceProvider
|
|||
});
|
||||
}
|
||||
|
||||
|
||||
public function boot()
|
||||
{
|
||||
$this->bootHookDirectives();
|
||||
|
|
@ -51,7 +50,6 @@ class HookServiceProvider extends ServiceProvider
|
|||
});
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 添加 blade wrapper hook 标签
|
||||
*
|
||||
|
|
|
|||
Loading…
Reference in New Issue