From b2cefe42b7cda8c44ffdbcd0456b9727903461c7 Mon Sep 17 00:00:00 2001 From: Ben-Piet O'Callaghan Date: Fri, 5 May 2017 07:52:07 +0100 Subject: [PATCH] Fix: Pivot table Missing Class name --- src/Commands/MigrationPivotCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Commands/MigrationPivotCommand.php b/src/Commands/MigrationPivotCommand.php index eb3f2df..5818939 100644 --- a/src/Commands/MigrationPivotCommand.php +++ b/src/Commands/MigrationPivotCommand.php @@ -34,7 +34,7 @@ class MigrationPivotCommand extends GeneratorCommand */ public function fire() { - $name = $this->qualifyClass($this->getNameInput()); + $name = $this->parseName($this->getNameInput()); $path = $this->getPath($name); if ($this->files->exists($path) && $this->optionForce() === false) { @@ -55,7 +55,7 @@ public function fire() */ protected function getNameInput() { - // + return ''; } /**