This repository has been archived by the owner on Mar 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
alias.php
25 lines (22 loc) · 2.01 KB
/
alias.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
declare(strict_types=1);
/**
* This file is part of Narrowspark Framework.
*
* (c) Daniel Bannert <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
\class_alias(Narrowspark\Automatic\Prefetcher\Common\Contract\Exception\Exception::class, Narrowspark\Automatic\Common\Contract\Exception\Exception::class);
\class_alias(Narrowspark\Automatic\Prefetcher\Common\Contract\Exception\InvalidArgumentException::class, Narrowspark\Automatic\Common\Contract\Exception\InvalidArgumentException::class);
\class_alias(Narrowspark\Automatic\Prefetcher\Common\Contract\Exception\RuntimeException::class, Narrowspark\Automatic\Common\Contract\Exception\RuntimeException::class);
\class_alias(Narrowspark\Automatic\Prefetcher\Common\Contract\Container::class, Narrowspark\Automatic\Common\Contract\Container::class);
\class_alias(Narrowspark\Automatic\Prefetcher\Common\Contract\Resettable::class, Narrowspark\Automatic\Common\Contract\Resettable::class);
\class_alias(Narrowspark\Automatic\Prefetcher\Common\Downloader\CurlDownloader::class, Narrowspark\Automatic\Common\Downloader\CurlDownloader::class);
\class_alias(Narrowspark\Automatic\Prefetcher\Common\Downloader\Downloader::class, Narrowspark\Automatic\Common\Downloader\Downloader::class);
\class_alias(Narrowspark\Automatic\Prefetcher\Common\Downloader\ParallelDownloader::class, Narrowspark\Automatic\Common\Downloader\ParallelDownloader::class);
\class_alias(Narrowspark\Automatic\Prefetcher\Common\Downloader\JsonResponse::class, Narrowspark\Automatic\Common\Downloader\JsonResponse::class);
\class_alias(Narrowspark\Automatic\Prefetcher\Common\Traits\GetGenericPropertyReaderTrait::class, Narrowspark\Automatic\Common\Traits\GetGenericPropertyReaderTrait::class);
\class_alias(Narrowspark\Automatic\Prefetcher\Common\AbstractContainer::class, Narrowspark\Automatic\Common\AbstractContainer::class);
\class_alias(Narrowspark\Automatic\Prefetcher\Common\Util::class, Narrowspark\Automatic\Common\Util::class);