IDE type-hinting fixes.

This commit is contained in:
Buster "Silver Eagle" Neece 2018-11-17 09:20:19 -06:00
parent 96db025a2d
commit 5e8693ecad
6 changed files with 24 additions and 18 deletions

View File

@ -10,6 +10,9 @@
"ext-simplexml": "*",
"ext-xml": "*",
"ext-xmlwriter": "*",
"ext-json": "*",
"ext-redis": "*",
"ext-PDO": "*",
"azuracast/azuracore": "dev-master",
"azuracast/azuraforms": "dev-master",

31
composer.lock generated
View File

@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
"content-hash": "deb9f049e2188ec1a7ac77f34e838211",
"content-hash": "8c5c41200717e92720f7b6b3bdf7ad3e",
"packages": [
{
"name": "azuracast/azuracore",
@ -12,12 +12,12 @@
"source": {
"type": "git",
"url": "https://github.com/AzuraCast/azuracore.git",
"reference": "0cd9e0fbed418f38b399763ab31703ecad6a6b65"
"reference": "2f40287a1b463f4ba202014ba8db1fd12d16d0da"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/AzuraCast/azuracore/zipball/0cd9e0fbed418f38b399763ab31703ecad6a6b65",
"reference": "0cd9e0fbed418f38b399763ab31703ecad6a6b65",
"url": "https://api.github.com/repos/AzuraCast/azuracore/zipball/2f40287a1b463f4ba202014ba8db1fd12d16d0da",
"reference": "2f40287a1b463f4ba202014ba8db1fd12d16d0da",
"shasum": ""
},
"require": {
@ -62,7 +62,7 @@
}
],
"description": "A lightweight core application framework.",
"time": "2018-11-13T05:29:41+00:00"
"time": "2018-11-17T15:17:38+00:00"
},
{
"name": "azuracast/azuraforms",
@ -1406,16 +1406,16 @@
},
{
"name": "gettext/languages",
"version": "2.4.0",
"version": "2.5.0",
"source": {
"type": "git",
"url": "https://github.com/mlocati/cldr-to-gettext-plural-rules.git",
"reference": "1b74377bd0c4cd87e8d72b948f5d8867e23505a5"
"reference": "78db2d17933f0765a102f368a6663f057162ddbd"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/mlocati/cldr-to-gettext-plural-rules/zipball/1b74377bd0c4cd87e8d72b948f5d8867e23505a5",
"reference": "1b74377bd0c4cd87e8d72b948f5d8867e23505a5",
"url": "https://api.github.com/repos/mlocati/cldr-to-gettext-plural-rules/zipball/78db2d17933f0765a102f368a6663f057162ddbd",
"reference": "78db2d17933f0765a102f368a6663f057162ddbd",
"shasum": ""
},
"require": {
@ -1463,7 +1463,7 @@
"translations",
"unicode"
],
"time": "2018-06-21T15:58:36+00:00"
"time": "2018-11-13T22:06:07+00:00"
},
{
"name": "guzzlehttp/guzzle",
@ -5367,7 +5367,7 @@
"pagarme/pagarme-php": ">=0,<3",
"paragonie/random_compat": "<2",
"paypal/merchant-sdk-php": "<3.12",
"phpmailer/phpmailer": ">=5,<5.2.24",
"phpmailer/phpmailer": ">=5,<5.2.27|>=6,<6.0.6",
"phpunit/phpunit": ">=4.8.19,<4.8.28|>=5.0.10,<5.6.3",
"phpwhois/phpwhois": "<=4.2.5",
"phpxmlrpc/extras": "<0.6.1",
@ -5419,7 +5419,7 @@
"symfony/yaml": ">=2,<2.0.22|>=2.1,<2.1.7",
"tecnickcom/tcpdf": "<6.2.22",
"thelia/backoffice-default-template": ">=2.1,<2.1.2",
"thelia/thelia": ">=2.1.0-beta1,<2.1.3|>=2.1,<2.1.2",
"thelia/thelia": ">=2.1,<2.1.2|>=2.1.0-beta1,<2.1.3",
"theonedemon/phpwhois": "<=4.2.5",
"titon/framework": ">=0,<9.9.99",
"truckersmp/phpwhois": "<=4.3.1",
@ -5476,7 +5476,7 @@
}
],
"description": "Prevents installation of composer packages with known security vulnerabilities: no API, simply require it",
"time": "2018-11-01T18:39:28+00:00"
"time": "2018-11-16T03:31:38+00:00"
},
{
"name": "sebastian/code-unit-reverse-lookup",
@ -6490,7 +6490,10 @@
"ext-intl": "*",
"ext-simplexml": "*",
"ext-xml": "*",
"ext-xmlwriter": "*"
"ext-xmlwriter": "*",
"ext-json": "*",
"ext-redis": "*",
"ext-pdo": "*"
},
"platform-dev": []
}

View File

@ -3,7 +3,7 @@
namespace App\Entity\Api;
use App\Entity;
use App\Http\Router;
use Azura\Http\Router;
/**
* @OA\Schema(type="object")

View File

@ -3,7 +3,7 @@
namespace App\Entity\Api;
use App\Entity;
use App\Http\Router;
use Azura\Http\Router;
/**
* @OA\Schema(type="object")

View File

@ -3,7 +3,7 @@
namespace App\Entity\Api;
use App\Entity;
use App\Http\Router;
use Azura\Http\Router;
/**
* @OA\Schema(type="object")

View File

@ -1,7 +1,7 @@
<?php
namespace App\Entity\Api;
use App\Http\Router;
use Azura\Http\Router;
/**
* @OA\Schema(type="object")