vairogs/vairogs

View on GitHub
src/Vairogs/Component/Functions/Sort.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php declare(strict_types = 1);

namespace Vairogs\Component\Functions;

final class Sort
{
    use Sort\_BubbleSort;
    use Sort\_IsSortable;
    use Sort\_MergeSort;
    use Sort\_Sort;
    use Sort\_Swap;
    use Sort\_SwapArray;
    use Sort\_Usort;
}