Skip to content
This repository was archived by the owner on Jan 21, 2020. It is now read-only.

Commit e857583

Browse files
committed
Incorporates feedback
1 parent aebac3d commit e857583

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ before_install:
3838
- if [[ $TEST_COVERAGE != 'true' ]]; then phpenv config-rm xdebug.ini || return 0 ; fi
3939

4040
install:
41-
- travis_retry composer install $COMPOSER_ARGS --ignore-platform-reqs
41+
- travis_retry composer install $COMPOSER_ARGS
4242
- if [[ $DEPS == 'latest' ]]; then travis_retry composer update $COMPOSER_ARGS ; fi
4343
- if [[ $DEPS == 'lowest' ]]; then travis_retry composer update --prefer-lowest --prefer-stable $COMPOSER_ARGS ; fi
4444
- if [[ $TEST_COVERAGE == 'true' ]]; then travis_retry composer require --dev $COMPOSER_ARGS $COVERAGE_DEPS ; fi

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
},
3232
"require-dev": {
3333
"malukenho/docheader": "^0.1.5",
34-
"phpunit/phpunit": "^6.5.3",
34+
"phpunit/phpunit": "^6.5.4",
3535
"zendframework/zend-coding-standard": "~1.0.0"
3636
},
3737
"conflict": {

composer.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/NamespacedPathStackResolver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
*/
3030
class NamespacedPathStackResolver extends TemplatePathStack
3131
{
32-
const DEFAULT_NAMESPACE = '__DEFAULT__';
32+
public const DEFAULT_NAMESPACE = '__DEFAULT__';
3333

3434
/**
3535
* @var array

src/ServerUrlHelper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public function __construct(BaseHelper $helper)
3333
*
3434
* Proxies to `Zend\Expressive\Helper\ServerUrlHelper::generate()`.
3535
*/
36-
public function __invoke(?string $path = null) : string
36+
public function __invoke(string $path = null) : string
3737
{
3838
return $this->helper->generate($path);
3939
}

0 commit comments

Comments
 (0)