26 lines
458 B
PHP
26 lines
458 B
PHP
<?php
|
|
|
|
namespace App\Console;
|
|
|
|
use App\Models\System\Warning;
|
|
use Illuminate\Console\Command;
|
|
|
|
class WarnDev extends Command
|
|
{
|
|
/**
|
|
* Notify me if any unresolved warnings exists
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __invoke()
|
|
{
|
|
$warnings = Warning::whereNull('resolved_at')->get();
|
|
|
|
if ($warnings->isEmpty()) {
|
|
return;
|
|
}
|
|
|
|
sendSMS('61929248', 'Warnings: '.$warnings->count());
|
|
}
|
|
}
|