for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Foundation\Models\Updaters;
class ModuleModelUpdater extends Updater
{
use UpdatesMedia, UpdatesOnlineToggle, UpdatesTranslations;
/**
* @return \Illuminate\Database\Eloquent\Model
*/
public function performUpdate()
$this->updateTranslations();
$this->updateOnlineToggle();
$this->updateMedia();
return $this->model;
}