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

18 lines
297 B
PHP
Raw Normal View History

2021-03-23 13:36:33 +00:00
<?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;
}