view src/Replacer/TableReplacer.php @ 6:b46922d4a301

Update for psr compliance
author luka
date Thu, 12 Oct 2023 19:44:22 -0400
parents b0b2e79ad8e6
children 769a17898cc0
line wrap: on
line source

<?php

namespace Wizzard\MagicForger\Replacer;

use Illuminate\Support\Str;

trait TableReplacer
{
    protected function get_columns()
    {
        return $this->getTables()->getColumns();
    }

    protected function get_attributes()
    {
    }
}