summaryrefslogtreecommitdiff
path: root/tests/Unit/Database/Migration/Stub/2017_12_24_053300_another_stuff.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Unit/Database/Migration/Stub/2017_12_24_053300_another_stuff.php')
-rw-r--r--tests/Unit/Database/Migration/Stub/2017_12_24_053300_another_stuff.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/Unit/Database/Migration/Stub/2017_12_24_053300_another_stuff.php b/tests/Unit/Database/Migration/Stub/2017_12_24_053300_another_stuff.php
index 65846d16..4adaf3ed 100644
--- a/tests/Unit/Database/Migration/Stub/2017_12_24_053300_another_stuff.php
+++ b/tests/Unit/Database/Migration/Stub/2017_12_24_053300_another_stuff.php
@@ -3,6 +3,7 @@
namespace Engelsystem\Migrations;
use Engelsystem\Database\Migration\Migration;
+use Illuminate\Database\Schema\Builder as SchemaBuilder;
class AnotherStuff extends Migration
{
@@ -21,4 +22,12 @@ class AnotherStuff extends Migration
{
// nope
}
+
+ /**
+ * @return SchemaBuilder
+ */
+ public function getSchema()
+ {
+ return $this->schema;
+ }
}