File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ checks:
2222tools :
2323 external_code_coverage :
2424 timeout : 600
25- runs : 2
25+ runs : 3
2626 php_code_sniffer :
2727 enabled : true
2828 config :
Original file line number Diff line number Diff line change 1010
1111matrix :
1212 allow_failures :
13- - php : 7.2
1413 - php : nightly
1514
1615before_script :
@@ -23,5 +22,5 @@ script:
2322 - vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
2423
2524after_script :
26- - if [ "$TRAVIS_PHP_VERSION" != "7.2" ] && [ "$TRAVIS_PHP_VERSION" != " nightly" ]; then wget https://scrutinizer-ci.com/ocular.phar; fi
27- - if [ "$TRAVIS_PHP_VERSION" != "7.2" ] && [ "$TRAVIS_PHP_VERSION" != " nightly" ]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
25+ - if [ "$TRAVIS_PHP_VERSION" != "nightly" ]; then wget https://scrutinizer-ci.com/ocular.phar; fi
26+ - if [ "$TRAVIS_PHP_VERSION" != "nightly" ]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ public function up()
5050 $ table ->longtext ('content_html ' );
5151 $ table ->boolean ('is_draft ' )->default (false );
5252 $ table ->timestamps ();
53- $ table ->timestamp ('published_at ' );
53+ $ table ->timestamp ('published_at ' )-> nullable () ;
5454 $ table ->softDeletes ();
5555
5656 $ table ->unique (['locale ' , 'slug ' ]);
You can’t perform that action at this time.
0 commit comments