Hackzilla\PasswordGenerator\Model\CharacterSet::getCharacters PHP Méthode

getCharacters() public méthode

public getCharacters ( )
    public function getCharacters()
    {
        return $this->characters;
    }

Usage Example

 /**
  * @dataProvider characterProvider
  * @param $characters
  * @param $result
  */
 public function testConstruct($characters, $result)
 {
     $characterSet = new CharacterSet($characters);
     $this->assertEquals($result, $characterSet->getCharacters());
     $this->assertEquals($result, $characterSet->__toString());
     $this->assertEquals($result, (string) $characterSet);
 }
All Usage Examples Of Hackzilla\PasswordGenerator\Model\CharacterSet::getCharacters