Skip to content

Commit

Permalink
Merge pull request #11 from spatie/analysis-zearPv
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
freekmurze authored Sep 14, 2018
2 parents b102992 + 31d0bdf commit aff41fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Http/Controllers/TagsFieldController.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

namespace Spatie\TagsField\Http\Controllers;

use Spatie\Tags\Tag;
use Illuminate\Http\Request;
use Illuminate\Routing\Controller;
use Spatie\Tags\Tag;

class TagsFieldController extends Controller
{
Expand Down
2 changes: 1 addition & 1 deletion src/Tags.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public function multiple(bool $multiple = true)

public function single(bool $single = true)
{
return $this->withMeta(['multiple' => !$single]);
return $this->withMeta(['multiple' => ! $single]);
}

protected function fillAttributeFromRequest(NovaRequest $request, $requestAttribute, $model, $attribute)
Expand Down

0 comments on commit aff41fc

Please sign in to comment.