├── .github ├── .php-cs-fixer.php └── workflows │ ├── style.yml │ └── tests.yml ├── .gitignore ├── .php-cs-fixer.cache ├── LICENSE.md ├── README.md ├── composer.json ├── config └── elevate.php ├── phpunit.xml ├── src ├── Exceptions │ └── CollectionItemNotFound.php ├── Macros │ ├── Blade │ │ ├── Blank.php │ │ └── Filled.php │ ├── Collection │ │ ├── After.php │ │ ├── At.php │ │ ├── Before.php │ │ ├── Carbonize.php │ │ ├── ChunkBy.php │ │ ├── CollectBy.php │ │ ├── EachCons.php │ │ ├── Eighth.php │ │ ├── Extract.php │ │ ├── Fifth.php │ │ ├── FilterMap.php │ │ ├── FirstOrFail.php │ │ ├── Fourth.php │ │ ├── FromPairs.php │ │ ├── Glob.php │ │ ├── GroupByModel.php │ │ ├── Head.php │ │ ├── IfAny.php │ │ ├── IfEmpty.php │ │ ├── Ninth.php │ │ ├── None.php │ │ ├── Paginate.php │ │ ├── ParallelMap.php │ │ ├── PluckToArray.php │ │ ├── Prioritize.php │ │ ├── Rotate.php │ │ ├── Second.php │ │ ├── SectionBy.php │ │ ├── Seventh.php │ │ ├── SimplePaginate.php │ │ ├── Sixth.php │ │ ├── SliceBefore.php │ │ ├── Tail.php │ │ ├── Tenth.php │ │ ├── Third.php │ │ ├── ToPairs.php │ │ ├── TransformKeys.php │ │ ├── Transpose.php │ │ ├── Trim.php │ │ ├── Validate.php │ │ └── WithSize.php │ └── Stringable │ │ ├── AppendIf.php │ │ ├── Collapse.php │ │ ├── Count.php │ │ ├── Get.php │ │ ├── Insert.php │ │ ├── PadLeft.php │ │ ├── PadRight.php │ │ ├── Possessive.php │ │ ├── PrependIf.php │ │ ├── Segment.php │ │ ├── ToArray.php │ │ └── Toggle.php └── ServiceProvider.php └── tests ├── Blade ├── BlankTest.php └── FilledTest.php ├── Collection ├── AfterTest.php ├── AtTest.php ├── BeforeTest.php ├── CarbonizeTest.php ├── ChunkByTest.php ├── CollectByTest.php ├── EachConsTest.php ├── ExtractTest.php ├── FilterMapTest.php ├── FirstOrFailTest.php ├── FromPairsTest.php ├── GetHumanCountTest.php ├── GroupByModelTest.php ├── HeadTest.php ├── IfAnyTest.php ├── IfEmptyTest.php ├── NoneTest.php ├── PaginateTest.php ├── PluckToArrayTest.php ├── PrioritizeTest.php ├── RotateTest.php ├── SectionByTest.php ├── SimplePaginateTest.php ├── SliceBeforeTest.php ├── TailTest.php ├── ToPairsTest.php ├── TransformKeysTest.php ├── TransposeTest.php ├── TrimTest.php ├── ValidateTest.php └── WithSizeTest.php ├── RegisterTest.php └── Stringable ├── AppendIfTest.php ├── CollapseTest.php ├── CountTest.php ├── GetTest.php ├── InsertTest.php ├── PadLeftTest.php ├── PadRightTest.php ├── PossessiveTest.php ├── PrependIfTest.php ├── SegmentTest.php ├── ToArrayTest.php └── ToggleTest.php /.github/.php-cs-fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/.github/.php-cs-fixer.php -------------------------------------------------------------------------------- /.github/workflows/style.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/.github/workflows/style.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/.php-cs-fixer.cache -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/composer.json -------------------------------------------------------------------------------- /config/elevate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/config/elevate.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Exceptions/CollectionItemNotFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Exceptions/CollectionItemNotFound.php -------------------------------------------------------------------------------- /src/Macros/Blade/Blank.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Blade/Blank.php -------------------------------------------------------------------------------- /src/Macros/Blade/Filled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Blade/Filled.php -------------------------------------------------------------------------------- /src/Macros/Collection/After.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Collection/After.php -------------------------------------------------------------------------------- /src/Macros/Collection/At.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Collection/At.php -------------------------------------------------------------------------------- /src/Macros/Collection/Before.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Collection/Before.php -------------------------------------------------------------------------------- /src/Macros/Collection/Carbonize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Collection/Carbonize.php -------------------------------------------------------------------------------- /src/Macros/Collection/ChunkBy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Collection/ChunkBy.php -------------------------------------------------------------------------------- /src/Macros/Collection/CollectBy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Collection/CollectBy.php -------------------------------------------------------------------------------- /src/Macros/Collection/EachCons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Collection/EachCons.php -------------------------------------------------------------------------------- /src/Macros/Collection/Eighth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Collection/Eighth.php -------------------------------------------------------------------------------- /src/Macros/Collection/Extract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Collection/Extract.php -------------------------------------------------------------------------------- /src/Macros/Collection/Fifth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Collection/Fifth.php -------------------------------------------------------------------------------- /src/Macros/Collection/FilterMap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Collection/FilterMap.php -------------------------------------------------------------------------------- /src/Macros/Collection/FirstOrFail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Collection/FirstOrFail.php -------------------------------------------------------------------------------- /src/Macros/Collection/Fourth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Collection/Fourth.php -------------------------------------------------------------------------------- /src/Macros/Collection/FromPairs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Collection/FromPairs.php -------------------------------------------------------------------------------- /src/Macros/Collection/Glob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Collection/Glob.php -------------------------------------------------------------------------------- /src/Macros/Collection/GroupByModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Collection/GroupByModel.php -------------------------------------------------------------------------------- /src/Macros/Collection/Head.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Collection/Head.php -------------------------------------------------------------------------------- /src/Macros/Collection/IfAny.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Collection/IfAny.php -------------------------------------------------------------------------------- /src/Macros/Collection/IfEmpty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Collection/IfEmpty.php -------------------------------------------------------------------------------- /src/Macros/Collection/Ninth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Collection/Ninth.php -------------------------------------------------------------------------------- /src/Macros/Collection/None.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Collection/None.php -------------------------------------------------------------------------------- /src/Macros/Collection/Paginate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Collection/Paginate.php -------------------------------------------------------------------------------- /src/Macros/Collection/ParallelMap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Collection/ParallelMap.php -------------------------------------------------------------------------------- /src/Macros/Collection/PluckToArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Collection/PluckToArray.php -------------------------------------------------------------------------------- /src/Macros/Collection/Prioritize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Collection/Prioritize.php -------------------------------------------------------------------------------- /src/Macros/Collection/Rotate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Collection/Rotate.php -------------------------------------------------------------------------------- /src/Macros/Collection/Second.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Collection/Second.php -------------------------------------------------------------------------------- /src/Macros/Collection/SectionBy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Collection/SectionBy.php -------------------------------------------------------------------------------- /src/Macros/Collection/Seventh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Collection/Seventh.php -------------------------------------------------------------------------------- /src/Macros/Collection/SimplePaginate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Collection/SimplePaginate.php -------------------------------------------------------------------------------- /src/Macros/Collection/Sixth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Collection/Sixth.php -------------------------------------------------------------------------------- /src/Macros/Collection/SliceBefore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Collection/SliceBefore.php -------------------------------------------------------------------------------- /src/Macros/Collection/Tail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Collection/Tail.php -------------------------------------------------------------------------------- /src/Macros/Collection/Tenth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Collection/Tenth.php -------------------------------------------------------------------------------- /src/Macros/Collection/Third.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Collection/Third.php -------------------------------------------------------------------------------- /src/Macros/Collection/ToPairs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Collection/ToPairs.php -------------------------------------------------------------------------------- /src/Macros/Collection/TransformKeys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Collection/TransformKeys.php -------------------------------------------------------------------------------- /src/Macros/Collection/Transpose.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Collection/Transpose.php -------------------------------------------------------------------------------- /src/Macros/Collection/Trim.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Collection/Trim.php -------------------------------------------------------------------------------- /src/Macros/Collection/Validate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Collection/Validate.php -------------------------------------------------------------------------------- /src/Macros/Collection/WithSize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Collection/WithSize.php -------------------------------------------------------------------------------- /src/Macros/Stringable/AppendIf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Stringable/AppendIf.php -------------------------------------------------------------------------------- /src/Macros/Stringable/Collapse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Stringable/Collapse.php -------------------------------------------------------------------------------- /src/Macros/Stringable/Count.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Stringable/Count.php -------------------------------------------------------------------------------- /src/Macros/Stringable/Get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Stringable/Get.php -------------------------------------------------------------------------------- /src/Macros/Stringable/Insert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Stringable/Insert.php -------------------------------------------------------------------------------- /src/Macros/Stringable/PadLeft.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Stringable/PadLeft.php -------------------------------------------------------------------------------- /src/Macros/Stringable/PadRight.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Stringable/PadRight.php -------------------------------------------------------------------------------- /src/Macros/Stringable/Possessive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Stringable/Possessive.php -------------------------------------------------------------------------------- /src/Macros/Stringable/PrependIf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Stringable/PrependIf.php -------------------------------------------------------------------------------- /src/Macros/Stringable/Segment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Stringable/Segment.php -------------------------------------------------------------------------------- /src/Macros/Stringable/ToArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Stringable/ToArray.php -------------------------------------------------------------------------------- /src/Macros/Stringable/Toggle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/Macros/Stringable/Toggle.php -------------------------------------------------------------------------------- /src/ServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/src/ServiceProvider.php -------------------------------------------------------------------------------- /tests/Blade/BlankTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/tests/Blade/BlankTest.php -------------------------------------------------------------------------------- /tests/Blade/FilledTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/tests/Blade/FilledTest.php -------------------------------------------------------------------------------- /tests/Collection/AfterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/tests/Collection/AfterTest.php -------------------------------------------------------------------------------- /tests/Collection/AtTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/tests/Collection/AtTest.php -------------------------------------------------------------------------------- /tests/Collection/BeforeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/tests/Collection/BeforeTest.php -------------------------------------------------------------------------------- /tests/Collection/CarbonizeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/tests/Collection/CarbonizeTest.php -------------------------------------------------------------------------------- /tests/Collection/ChunkByTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/tests/Collection/ChunkByTest.php -------------------------------------------------------------------------------- /tests/Collection/CollectByTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/tests/Collection/CollectByTest.php -------------------------------------------------------------------------------- /tests/Collection/EachConsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/tests/Collection/EachConsTest.php -------------------------------------------------------------------------------- /tests/Collection/ExtractTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/tests/Collection/ExtractTest.php -------------------------------------------------------------------------------- /tests/Collection/FilterMapTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/tests/Collection/FilterMapTest.php -------------------------------------------------------------------------------- /tests/Collection/FirstOrFailTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/tests/Collection/FirstOrFailTest.php -------------------------------------------------------------------------------- /tests/Collection/FromPairsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/tests/Collection/FromPairsTest.php -------------------------------------------------------------------------------- /tests/Collection/GetHumanCountTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/tests/Collection/GetHumanCountTest.php -------------------------------------------------------------------------------- /tests/Collection/GroupByModelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/tests/Collection/GroupByModelTest.php -------------------------------------------------------------------------------- /tests/Collection/HeadTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/tests/Collection/HeadTest.php -------------------------------------------------------------------------------- /tests/Collection/IfAnyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/tests/Collection/IfAnyTest.php -------------------------------------------------------------------------------- /tests/Collection/IfEmptyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/tests/Collection/IfEmptyTest.php -------------------------------------------------------------------------------- /tests/Collection/NoneTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/tests/Collection/NoneTest.php -------------------------------------------------------------------------------- /tests/Collection/PaginateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/tests/Collection/PaginateTest.php -------------------------------------------------------------------------------- /tests/Collection/PluckToArrayTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/tests/Collection/PluckToArrayTest.php -------------------------------------------------------------------------------- /tests/Collection/PrioritizeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/tests/Collection/PrioritizeTest.php -------------------------------------------------------------------------------- /tests/Collection/RotateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/tests/Collection/RotateTest.php -------------------------------------------------------------------------------- /tests/Collection/SectionByTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/tests/Collection/SectionByTest.php -------------------------------------------------------------------------------- /tests/Collection/SimplePaginateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/tests/Collection/SimplePaginateTest.php -------------------------------------------------------------------------------- /tests/Collection/SliceBeforeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/tests/Collection/SliceBeforeTest.php -------------------------------------------------------------------------------- /tests/Collection/TailTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/tests/Collection/TailTest.php -------------------------------------------------------------------------------- /tests/Collection/ToPairsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/tests/Collection/ToPairsTest.php -------------------------------------------------------------------------------- /tests/Collection/TransformKeysTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/tests/Collection/TransformKeysTest.php -------------------------------------------------------------------------------- /tests/Collection/TransposeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/tests/Collection/TransposeTest.php -------------------------------------------------------------------------------- /tests/Collection/TrimTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/tests/Collection/TrimTest.php -------------------------------------------------------------------------------- /tests/Collection/ValidateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/tests/Collection/ValidateTest.php -------------------------------------------------------------------------------- /tests/Collection/WithSizeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/tests/Collection/WithSizeTest.php -------------------------------------------------------------------------------- /tests/RegisterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/tests/RegisterTest.php -------------------------------------------------------------------------------- /tests/Stringable/AppendIfTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/tests/Stringable/AppendIfTest.php -------------------------------------------------------------------------------- /tests/Stringable/CollapseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/tests/Stringable/CollapseTest.php -------------------------------------------------------------------------------- /tests/Stringable/CountTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/tests/Stringable/CountTest.php -------------------------------------------------------------------------------- /tests/Stringable/GetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/tests/Stringable/GetTest.php -------------------------------------------------------------------------------- /tests/Stringable/InsertTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/tests/Stringable/InsertTest.php -------------------------------------------------------------------------------- /tests/Stringable/PadLeftTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/tests/Stringable/PadLeftTest.php -------------------------------------------------------------------------------- /tests/Stringable/PadRightTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/tests/Stringable/PadRightTest.php -------------------------------------------------------------------------------- /tests/Stringable/PossessiveTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/tests/Stringable/PossessiveTest.php -------------------------------------------------------------------------------- /tests/Stringable/PrependIfTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/tests/Stringable/PrependIfTest.php -------------------------------------------------------------------------------- /tests/Stringable/SegmentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/tests/Stringable/SegmentTest.php -------------------------------------------------------------------------------- /tests/Stringable/ToArrayTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/tests/Stringable/ToArrayTest.php -------------------------------------------------------------------------------- /tests/Stringable/ToggleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caneara/elevate/HEAD/tests/Stringable/ToggleTest.php --------------------------------------------------------------------------------