hasPatchVersion() public static method

public static hasPatchVersion ( $version )
コード例 #1
0
ファイル: VersionTest.php プロジェクト: WebDevJL/phpbrew
 public function testHasPatchVersion()
 {
     $this->assertTrue(Version::hasPatchVersion('5.5.2'));
     $this->assertFalse(Version::hasPatchVersion('5.5'));
 }