unifies indentation

This commit is contained in:
Jan Brecka
2014-04-08 11:29:03 +02:00
parent d779b1e86a
commit 6e937055cf
5 changed files with 15 additions and 20 deletions

View File

@@ -11,12 +11,11 @@ class Worker
// for example creates "thread"
}
public function run($image, array $callback)
{
public function run($image, array $callback)
{
// do something with $image...
// and when it's done, execute callback
call_user_func($callback, $this);
}
}
}