I need a method to notify my application that one minute has elapsed in php. This method is of type void
I try it:
public function minutes() : void {
ini_set('max_execution_time', 60);
$i = 0;
while ( $i < 60 ){
$i++;
sleep(1);
}