Skip to content
Snippets Groups Projects
Commit 05e35141 authored by Vincent Petry's avatar Vincent Petry
Browse files

Fixed instanceof to use interface instead of class

parent ca690c4d
No related merge requests found
......@@ -9,6 +9,7 @@
namespace OC;
use OC\Hooks\BasicEmitter;
use OC\Hooks\Emitter;
class Repair extends BasicEmitter {
/**
......@@ -38,7 +39,7 @@ class Repair extends BasicEmitter {
foreach ($this->repairSteps as $step) {
$this->emit('\OC\Repair', 'step', array($step->getName()));
if ($step instanceof BasicEmitter) {
if ($step instanceof Emitter) {
$step->listen('\OC\Repair', 'warning', function ($description) use ($self) {
$self->emit('\OC\Repair', 'warning', array($description));
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment