gnusocial.rocks/soc/2020/daily_report/archive/app/src/SortMethods/Natural.php

21 lines
349 B
PHP

<?php
namespace App\SortMethods;
use Symfony\Component\Finder\Finder;
class Natural extends SortMethod
{
/**
* Sort by (natural) file name.
*
* @param \Symfony\Component\Finder\Finder $finder
*
* @return void
*/
public function __invoke(Finder $finder): void
{
$finder->sortByName(true);
}
}