<?php

declare(strict_types=1);

namespace App\SortMethods;

use Symfony\Component\Finder\Finder;

class Modified extends SortMethod
{
    /** Sort by file modified time. */
    public function __invoke(Finder $finder): void
    {
        $finder->sortByModifiedTime();
    }
}
