Skip to content
This repository has been archived by the owner on Jul 22, 2022. It is now read-only.

Commit

Permalink
Merge 3.x into master
Browse files Browse the repository at this point in the history
  • Loading branch information
SonataCI committed Nov 6, 2019
2 parents b02725d + 470baee commit 29f1989
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 15 deletions.
1 change: 1 addition & 0 deletions .php_cs.dist
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ $rules = [
'@PHP56Migration' => true,
'@PHP56Migration:risky' => true,
'@PHPUnit57Migration:risky' => true,
'single_line_throw' => false,
'@PHP70Migration' => true,
'@PHP70Migration:risky' => true,
'@PHPUnit60Migration:risky' => true,
Expand Down
16 changes: 9 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ language: php
php:
- '7.2'
- '7.3'
- '7.4snapshot'
- nightly

dist: xenial
Expand All @@ -37,23 +38,24 @@ env:
matrix:
fast_finish: true
include:
- php: '7.3'
- php: '7.4snapshot'
env: TARGET=docs
- php: '7.3'
- php: '7.4snapshot'
env: TARGET=lint
- php: '7.2'
env: COMPOSER_FLAGS="--prefer-lowest"
- php: '7.3'
- php: '7.4snapshot'
env: SYMFONY=3.4.*
- php: '7.3'
- php: '7.4snapshot'
env: SYMFONY='dev-master as 3.4.x-dev'
- php: '7.3'
- php: '7.4snapshot'
env: SONATA_CORE=3.*
- php: '7.3'
- php: '7.4snapshot'
env: SONATA_CORE='dev-master as 3.x-dev'
- php: '7.3'
- php: '7.4snapshot'
env: SYMFONY_DEPRECATIONS_HELPER=0
allow_failures:
- php: 7.4snapshot
- php: nightly
- env: SYMFONY_DEPRECATIONS_HELPER=0
- env: SYMFONY='dev-master as 3.4.x-dev'
Expand Down
6 changes: 0 additions & 6 deletions .travis/install_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,4 @@ chmod u+x "${HOME}/bin/phpunit"
wget https://github.com/satooshi/php-coveralls/releases/download/v1.0.1/coveralls.phar --output-document="${HOME}/bin/coveralls"
chmod u+x "${HOME}/bin/coveralls"

# To be removed when these issues are resolved:
# https://github.com/composer/composer/issues/5355
if [ "${COMPOSER_FLAGS}" = '--prefer-lowest' ]; then
composer update --prefer-dist --no-interaction --prefer-stable --quiet
fi

composer update --prefer-dist --no-interaction --prefer-stable ${COMPOSER_FLAGS}
1 change: 0 additions & 1 deletion src/Manager/CommentManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ class CommentManager extends BaseCommentManager
/**
* Returns Thread average note.
*
*
* @return float
*/
public function findAverageNote(Thread $thread)
Expand Down
1 change: 0 additions & 1 deletion src/Note/NoteProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ public function getValues()
/**
* Returns Thread average note.
*
*
* @return float
*/
public function findAverageNote(Thread $thread)
Expand Down

0 comments on commit 29f1989

Please sign in to comment.