mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-01-07 06:31:22 +00:00
Code cleanup.
This commit is contained in:
@@ -29,7 +29,7 @@ class AbnAmroDescription implements SpecificInterface
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
static public function getDescription(): string
|
||||
public static function getDescription(): string
|
||||
{
|
||||
return 'Fixes possible problems with ABN Amro descriptions.';
|
||||
}
|
||||
@@ -37,7 +37,7 @@ class AbnAmroDescription implements SpecificInterface
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
static public function getName(): string
|
||||
public static function getName(): string
|
||||
{
|
||||
return 'ABN Amro description';
|
||||
}
|
||||
@@ -218,4 +218,4 @@ class AbnAmroDescription implements SpecificInterface
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -23,7 +23,7 @@ class RabobankDescription implements SpecificInterface
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
static public function getDescription(): string
|
||||
public static function getDescription(): string
|
||||
{
|
||||
return 'Fixes possible problems with Rabobank descriptions.';
|
||||
}
|
||||
@@ -31,7 +31,7 @@ class RabobankDescription implements SpecificInterface
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
static public function getName(): string
|
||||
public static function getName(): string
|
||||
{
|
||||
return 'Rabobank description';
|
||||
}
|
||||
@@ -61,4 +61,4 @@ class RabobankDescription implements SpecificInterface
|
||||
|
||||
return $row;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -21,12 +21,12 @@ interface SpecificInterface
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
static public function getName(): string;
|
||||
public static function getName(): string;
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
static public function getDescription(): string;
|
||||
public static function getDescription(): string;
|
||||
|
||||
/**
|
||||
* @param array $row
|
||||
@@ -35,4 +35,4 @@ interface SpecificInterface
|
||||
*/
|
||||
public function run(array $row): array;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user