findLatestPatchVersion() public static method

public static findLatestPatchVersion ( $currentVersion, array $versions )
$versions array
コード例 #1
0
ファイル: VersionTest.php プロジェクト: WebDevJL/phpbrew
 public function testFindLastPatchVersion()
 {
     $ret = Version::findLatestPatchVersion('5.5', array('5.5.26', '5.5.25', '5.5.1'));
     $this->assertEquals('5.5.26', $ret);
 }