Skip to content

Commit

Permalink
Merge pull request #600 from cweiske/php73
Browse files Browse the repository at this point in the history
Make respond work on php 7.3
  • Loading branch information
axis80 committed Feb 16, 2019
2 parents 2e06265 + 9adbac4 commit 5262287
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion app/Http/Controllers/CodeController.php
Expand Up @@ -13,7 +13,7 @@
use App\Respond\Models\Page;

// DOM parser
use Sunra\PhpSimple\HtmlDomParser;
use KubAT\PhpSimple\HtmlDomParser;

class CodeController extends Controller
{
Expand Down
2 changes: 1 addition & 1 deletion app/Http/Controllers/EditController.php
Expand Up @@ -12,7 +12,7 @@
use App\Respond\Models\Setting;

// DOM parser
use Sunra\PhpSimple\HtmlDomParser;
use KubAT\PhpSimple\HtmlDomParser;

class EditController extends Controller
{
Expand Down
2 changes: 1 addition & 1 deletion app/Respond/Libraries/Publish.php
Expand Up @@ -16,7 +16,7 @@
use App\Respond\Models\Theme;

// DOM parser
use Sunra\PhpSimple\HtmlDomParser;
use KubAT\PhpSimple\HtmlDomParser;

// Twig Extensions
use App\Respond\Extensions\BetterSortTwigExtension;
Expand Down
2 changes: 1 addition & 1 deletion app/Respond/Models/Component.php
Expand Up @@ -9,7 +9,7 @@
use App\Respond\Models\User;

// DOM parser
use Sunra\PhpSimple\HtmlDomParser;
use KubAT\PhpSimple\HtmlDomParser;

/**
* Models a component
Expand Down
2 changes: 1 addition & 1 deletion app/Respond/Models/Page.php
Expand Up @@ -14,7 +14,7 @@
use Lullabot\AMP\Validate\Scope;

// DOM parser
use Sunra\PhpSimple\HtmlDomParser;
use KubAT\PhpSimple\HtmlDomParser;

/**
* Models a page
Expand Down
2 changes: 1 addition & 1 deletion app/Respond/Models/Setting.php
Expand Up @@ -9,7 +9,7 @@
use App\Respond\Models\User;

// DOM parser
use Sunra\PhpSimple\HtmlDomParser;
use KubAT\PhpSimple\HtmlDomParser;

// Encrypt/Decrypt
use Illuminate\Support\Facades\Crypt;
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -11,7 +11,7 @@
"vlucas/phpdotenv": "~2.2",
"firebase/php-jwt": "dev-master",
"phpmailer/phpmailer": "~6.0",
"sunra/php-simple-html-dom-parser": "1.5.1",
"kub-at/php-simple-html-dom-parser": "^1.7",
"symfony/yaml": "3.0.3",
"alchemy/zippy": "^0.4.9",
"guzzlehttp/guzzle": "^6.2.3",
Expand Down

0 comments on commit 5262287

Please sign in to comment.