Make StyleCI happy

This commit is contained in:
Franz Liedke 2016-06-13 21:08:17 +09:00
parent a57c337a24
commit 4ef40435e3
3 changed files with 3 additions and 4 deletions

View File

@ -10,7 +10,6 @@
namespace Flarum\Api\Serializer;
use Flarum\Core\Access\Gate;
use Flarum\Forum\UrlGenerator;
use Flarum\Foundation\Application;
use Flarum\Settings\SettingsRepositoryInterface;

View File

@ -41,7 +41,7 @@ class LessCompiler extends RevisionCompiler
if (! count($this->files) || ! count($this->strings)) {
return;
}
ini_set('xdebug.max_nesting_level', 200);
$parser = new Less_Parser([

View File

@ -73,13 +73,13 @@ abstract class AbstractModel extends Eloquent
public function __construct(array $attributes = [])
{
$defaults = [];
static::$dispatcher->fire(
new ConfigureModelDefaultAttributes($this, $defaults)
);
$this->attributes = $defaults;
parent::__construct($attributes);
}