Laravel 5.6 updates

Travis config update

Removed HHVM script as Laravel no longer support HHVM after releasing 5.3
This commit is contained in:
Manish Verma
2018-08-06 20:08:55 +05:30
parent 126fbb0255
commit 1ac0f42a58
2464 changed files with 65239 additions and 46734 deletions

View File

@@ -69,6 +69,10 @@ class Diff_SequenceMatcher
private $options = array();
private $matchingBlocks = null;
private $opCodes = null;
private $fullBCount = null;
private $defaultOptions = array(
'ignoreNewLines' => false,
'ignoreWhitespace' => false,
@@ -217,7 +221,7 @@ class Diff_SequenceMatcher
*/
private function isBJunk($b)
{
if(isset($this->juncDict[$b])) {
if(isset($this->junkDict[$b])) {
return true;
}
@@ -258,7 +262,7 @@ class Diff_SequenceMatcher
for($i = $alo; $i < $ahi; ++$i) {
$newJ2Len = array();
$jDict = $this->arrayGetDefault($this->b2j, $a[$i], $nothing);
foreach($jDict as $jKey => $j) {
foreach($jDict as $j) {
if($j < $blo) {
continue;
}
@@ -291,7 +295,7 @@ class Diff_SequenceMatcher
}
while($bestI > $alo && $bestJ > $blo && $this->isBJunk($b[$bestJ - 1]) &&
!$this->isLineDifferent($bestI - 1, $bestJ - 1)) {
!$this->linesAreDifferent($bestI - 1, $bestJ - 1)) {
--$bestI;
--$bestJ;
++$bestSize;
@@ -745,4 +749,4 @@ class Diff_SequenceMatcher
return 1;
}
}
}
}