This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace Automobiles; | |
Abstract class AbstractAutomobile implements AutomobileInterface | |
{ | |
//A find usages on this method returns both usages in DrivingTest.php on lines 19 and 20 | |
//if I choose to search its base method. Otherwise this finds nothing. | |
abstract public function loadPassengers(); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* Code to populate $mergeType, $mergePath and $pathArr['pdf_id']. | |
*/ | |
$toMerge = $file->getMergeFileList($mergeType, $mergePath, $pathArr['pdf_id'], "BOTH"); | |
function cmp($a, $b) { | |
if ($a['HZORD#'] == $b['HZORD#']) { | |
return 0; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require_once('vendor/autoload.php'); | |
$_SERVER['APPLICATION_ENV']='development'; | |
$_SERVER['APPLICATION_URL_PREFIX']='development.'; | |
StartSeleniumServer(); | |
RunTests(); | |
function RunTests() | |
{ | |
$tries=100; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* bootstrap.php | |
* Bootstraps an application. | |
* | |
* Zend Framework (http://framework.zend.com/) | |
* | |
* @link http://github.com/zendframework/ZendSkeletonApplication for the canonical source repository | |
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) |