Vsch\TranslationManager\Manager::cleanTranslations PHP Method

cleanTranslations() public method

public cleanTranslations ( )
    public function cleanTranslations()
    {
        $this->translation->whereNull('value')->delete();
    }

Usage Example

 /**
  * Execute the console command.
  *
  * @return void
  */
 public function fire()
 {
     $this->manager->cleanTranslations();
     $this->info("Done cleaning translations");
 }