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

18 lines
297 B
PHP

<?php
namespace App\SortMethods;
use Symfony\Component\Finder\Finder;
abstract class SortMethod
{
/**
* Run the sort method.
*
* @param \Symfony\Component\Finder\Finder $finder
*
* @return void
*/
abstract public function __invoke(Finder $finder): void;
}