chrisharrison/case-converter

A factory wrapper around jawira/case-converter

1.0.0 2019-08-05 10:25 UTC

This package is auto-updated.

Last update: 2024-04-05 21:43:11 UTC


README

A factory wrapper around jawira/case-converter

Injectable

This library allows the functionality of the excellent jawira/case-converter to be injected as a dependency into other classes.

final class SomethingThatNeedsToConvertCase
{
  private $caseConverter;
  private $defaultSuffix;
  
  public function __construct(CaseConverter $caseConverter, string $defaultSuffix)
  {
    $this->caseConverter = $caseConverter;
    $this->defaultSuffix = $defaultSuffix;
  }
  
  public function usesTheConverter(string $aStringFromSomethingElse): string
  {
    $this->caseConverter->from($aStringFromSomethingElse)->toCamel() . $this->defaultSuffix;
  }
}

Testable/mockable

The library allows the case conversion dependency to be mocked so classes can be more easily tested.