supportsClass() public method

Whether this provider supports the given user class.
public supportsClass ( string $class ) : boolean
$class string
return boolean
Beispiel #1
0
 /**
  * @dataProvider supportsClassProvider
  */
 public function testSupportsClass($class, $supports)
 {
     $this->assertSame($supports, $this->userProvider->supportsClass($class));
 }