File tree Expand file tree Collapse file tree
lib/net/authorize/api/contract/v1 Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ before_script:
2828script :
2929 # execute all of the tests or other commands to determine
3030 # whether the build will pass or fail
31- - if [[ "$TEST_SUITE" == "samples" ]]; then phpenv config-rm xdebug.ini; cp -R lib sample-code-php/; cp -R vendor sample-code-php/; cd sample-code-php; vendor/phpunit/phpunit/phpunit test-runner.php .; cat testslog; fi
31+ - if [[ "$TEST_SUITE" == "samples" ]]; then phpenv config-rm xdebug.ini; cp -R lib sample-code-php/; cp -R vendor sample-code-php/; cd sample-code-php; vendor/phpunit/phpunit/phpunit test-runner.php .; fi
3232
3333after_script :
3434# - if [[ "$TEST_SUITE" == "coverage" ]]; then wget https://scrutinizer-ci.com/ocular.phar; fi
Original file line number Diff line number Diff line change @@ -73,7 +73,8 @@ public function getStartDate()
7373 */
7474 public function setStartDate (\DateTime $ startDate )
7575 {
76- $ this ->startDate = $ startDate ;
76+ $ strDateOnly = $ startDate ->format ('Y-m-d ' );
77+ $ this ->startDate = \DateTime::createFromFormat ('!Y-m-d ' , $ strDateOnly );
7778 return $ this ;
7879 }
7980
You can’t perform that action at this time.
0 commit comments