PHP Classes

File: src/Transformation/Lowercase.php

Recommend this page to a friend!
  Classes of Scott Arciszewski   Cipher Sweet   src/Transformation/Lowercase.php   Download  
File: src/Transformation/Lowercase.php
Role: Class source
Content type: text/plain
Description: Class source
Class: Cipher Sweet
Encrypt data in away that can be searched
Author: By
Last change:
Date: 5 years ago
Size: 470 bytes
 

Contents

Class file image Download
<?php
namespace ParagonIE\CipherSweet\Transformation;

use
ParagonIE\CipherSweet\Contract\TransformationInterface;

/**
 * Class Lowercase
 * @package ParagonIE\CipherSweet\Transformation
 */
class Lowercase implements TransformationInterface
{
   
/**
     * Returns the lowercase representation of the input string.
     *
     * @param string $input
     * @return string
     */
   
public function __invoke($input)
    {
        return \
strtolower($input);
    }
}