mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +00:00
fix formatting and error
This commit is contained in:
@@ -264,8 +264,8 @@ class Event
|
||||
*/
|
||||
public function trigger(): string|bool
|
||||
{
|
||||
if($this->paused) {
|
||||
return;
|
||||
if ($this->paused) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return Resque::enqueue($this->queue, $this->class, [
|
||||
|
||||
@@ -142,7 +142,7 @@ class Func extends Event
|
||||
*/
|
||||
public function trigger(): string|bool
|
||||
{
|
||||
if($this->paused) {
|
||||
if ($this->paused) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user