mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-02-10 22:18:40 +00:00
autofixes
This commit is contained in:
parent
64198f0562
commit
9d6ecedba2
|
|
@ -24,5 +24,5 @@ namespace phpOMS\Algorithm\Sort;
|
||||||
*/
|
*/
|
||||||
interface SortableInterface
|
interface SortableInterface
|
||||||
{
|
{
|
||||||
public function compare(SortableInterface $obj, int $order = SortOrder::ASC) : bool;
|
public function compare(self $obj, int $order = SortOrder::ASC) : bool;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,6 @@
|
||||||
namespace phpOMS\tests\Algorithm\Sort;
|
namespace phpOMS\tests\Algorithm\Sort;
|
||||||
|
|
||||||
use phpOMS\Algorithm\Sort\BubbleSort;
|
use phpOMS\Algorithm\Sort\BubbleSort;
|
||||||
use phpOMS\Algorithm\Sort\SortableInterface;
|
|
||||||
use phpOMS\Algorithm\Sort\SortOrder;
|
use phpOMS\Algorithm\Sort\SortOrder;
|
||||||
|
|
||||||
require_once __DIR__ . '/../../Autoloader.php';
|
require_once __DIR__ . '/../../Autoloader.php';
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,6 @@
|
||||||
namespace phpOMS\tests\Algorithm\Sort;
|
namespace phpOMS\tests\Algorithm\Sort;
|
||||||
|
|
||||||
use phpOMS\Algorithm\Sort\CocktailShakerSort;
|
use phpOMS\Algorithm\Sort\CocktailShakerSort;
|
||||||
use phpOMS\Algorithm\Sort\SortableInterface;
|
|
||||||
use phpOMS\Algorithm\Sort\SortOrder;
|
use phpOMS\Algorithm\Sort\SortOrder;
|
||||||
|
|
||||||
require_once __DIR__ . '/../../Autoloader.php';
|
require_once __DIR__ . '/../../Autoloader.php';
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,6 @@
|
||||||
namespace phpOMS\tests\Algorithm\Sort;
|
namespace phpOMS\tests\Algorithm\Sort;
|
||||||
|
|
||||||
use phpOMS\Algorithm\Sort\CombSort;
|
use phpOMS\Algorithm\Sort\CombSort;
|
||||||
use phpOMS\Algorithm\Sort\SortableInterface;
|
|
||||||
use phpOMS\Algorithm\Sort\SortOrder;
|
use phpOMS\Algorithm\Sort\SortOrder;
|
||||||
|
|
||||||
require_once __DIR__ . '/../../Autoloader.php';
|
require_once __DIR__ . '/../../Autoloader.php';
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,6 @@
|
||||||
namespace phpOMS\tests\Algorithm\Sort;
|
namespace phpOMS\tests\Algorithm\Sort;
|
||||||
|
|
||||||
use phpOMS\Algorithm\Sort\GnomeSort;
|
use phpOMS\Algorithm\Sort\GnomeSort;
|
||||||
use phpOMS\Algorithm\Sort\SortableInterface;
|
|
||||||
use phpOMS\Algorithm\Sort\SortOrder;
|
use phpOMS\Algorithm\Sort\SortOrder;
|
||||||
|
|
||||||
require_once __DIR__ . '/../../Autoloader.php';
|
require_once __DIR__ . '/../../Autoloader.php';
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,6 @@
|
||||||
namespace phpOMS\tests\Algorithm\Sort;
|
namespace phpOMS\tests\Algorithm\Sort;
|
||||||
|
|
||||||
use phpOMS\Algorithm\Sort\OddEvenSort;
|
use phpOMS\Algorithm\Sort\OddEvenSort;
|
||||||
use phpOMS\Algorithm\Sort\SortableInterface;
|
|
||||||
use phpOMS\Algorithm\Sort\SortOrder;
|
use phpOMS\Algorithm\Sort\SortOrder;
|
||||||
|
|
||||||
require_once __DIR__ . '/../../Autoloader.php';
|
require_once __DIR__ . '/../../Autoloader.php';
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,6 @@
|
||||||
namespace phpOMS\tests\Algorithm\Sort;
|
namespace phpOMS\tests\Algorithm\Sort;
|
||||||
|
|
||||||
use phpOMS\Algorithm\Sort\QuickSort;
|
use phpOMS\Algorithm\Sort\QuickSort;
|
||||||
use phpOMS\Algorithm\Sort\SortableInterface;
|
|
||||||
use phpOMS\Algorithm\Sort\SortOrder;
|
use phpOMS\Algorithm\Sort\SortOrder;
|
||||||
|
|
||||||
require_once __DIR__ . '/../../Autoloader.php';
|
require_once __DIR__ . '/../../Autoloader.php';
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,6 @@
|
||||||
namespace phpOMS\tests\Algorithm\Sort;
|
namespace phpOMS\tests\Algorithm\Sort;
|
||||||
|
|
||||||
use phpOMS\Algorithm\Sort\SelectionSort;
|
use phpOMS\Algorithm\Sort\SelectionSort;
|
||||||
use phpOMS\Algorithm\Sort\SortableInterface;
|
|
||||||
use phpOMS\Algorithm\Sort\SortOrder;
|
use phpOMS\Algorithm\Sort\SortOrder;
|
||||||
|
|
||||||
require_once __DIR__ . '/../../Autoloader.php';
|
require_once __DIR__ . '/../../Autoloader.php';
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user