whisper-money/app/Features/CustomMonthStartDay.php

20 lines
241 B
PHP

<?php
namespace App\Features;
use App\Models\User;
/**
* @api
*/
class CustomMonthStartDay
{
/**
* Resolve the feature's initial value.
*/
public function resolve(?User $user): bool
{
return false;
}
}