Mercurial > packages > magicforger
diff src/Replacer/TableReplacer.php @ 5:b0b2e79ad8e6
Not exatly sure what was changed but commiting to it :)
| author | luka |
|---|---|
| date | Thu, 12 Oct 2023 19:41:04 -0400 |
| parents | |
| children | b46922d4a301 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/Replacer/TableReplacer.php Thu Oct 12 19:41:04 2023 -0400 @@ -0,0 +1,17 @@ +<?php + +namespace Wizzard\MagicForger\Replacer; + +use Illuminate\Support\Str; + +trait Replacer +{ + protected function get_columns() + { + return $this->getTables()->getColumns(); + } + + protected function get_attributes() + { + } +}
