1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-03-22 08:30:26 +01:00

[ticket/16668] Add return type hinting

PHPBB3-16668
This commit is contained in:
Máté Bartus 2021-01-04 21:56:01 +01:00
parent 1cf758250a
commit ea12db9bb4

View File

@ -90,11 +90,11 @@ class schema_generator
*
* @return array An array describing the database schema.
*
* @throws UnexpectedValueException If a migration tries to use an undefined schema change.
* @throws UnexpectedValueException If a migration tries to use an undefined schema change.
* @throws UnexpectedValueException If a dependency can't be resolved or there are circular
* dependencies between migrations.
*/
public function get_schema()
public function get_schema() : array
{
if (!empty($this->tables))
{
@ -316,7 +316,7 @@ class schema_generator
*
* @return Closure|null The value transformation callback or null if it is not needed.
*/
private static function get_value_transform(string $change_type, string $schema_type)
private static function get_value_transform(string $change_type, string $schema_type) : ?Closure
{
if ($change_type !== 'add')
{