add server-side code and mobile app code

This commit is contained in:
Odweta
2024-01-07 01:11:37 +00:00
parent 5aff4ac5a6
commit 263efd5b65
402 changed files with 71488 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
<?php
/*
* This file is part of the Goutte package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Goutte;
use Symfony\Component\BrowserKit\CookieJar;
use Symfony\Component\BrowserKit\History;
use Symfony\Component\BrowserKit\HttpBrowser;
use Symfony\Contracts\HttpClient\HttpClientInterface;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @deprecated Use Symfony\Component\BrowserKit\HttpBrowser directly instead
*/
class Client extends HttpBrowser
{
public function __construct(HttpClientInterface $client = null, History $history = null, CookieJar $cookieJar = null)
{
trigger_deprecation('fabpot/goutte', '4.0', 'The "%s" class is deprecated, use "%s" instead.', __CLASS__, HttpBrowser::class);
parent::__construct($client, $history, $cookieJar);
}
}