From bd380e365c3fb0089a241baeae2959d2c9785abf Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Sat, 22 Feb 2020 12:00:59 +0000 Subject: [PATCH] Stop phpcs line too long error for generated class Docs --- app/Models/Place.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/Models/Place.php b/app/Models/Place.php index 85e8c77a..26623de2 100644 --- a/app/Models/Place.php +++ b/app/Models/Place.php @@ -12,6 +12,8 @@ use Illuminate\Support\Str; use Phaza\LaravelPostgis\Eloquent\PostgisTrait; use Phaza\LaravelPostgis\Geometries\Point; +// phpcs:disable Generic.Files.LineLength.TooLong + /** * App\Models\Place. * @@ -54,6 +56,7 @@ use Phaza\LaravelPostgis\Geometries\Point; */ class Place extends Model { + // phpcs:enable Generic.Files.LineLength.TooLong use Sluggable; use PostgisTrait;