Type for variables and returns for methods

This commit is contained in:
Thomas 2024-05-09 16:41:04 +02:00
parent daaa039f4c
commit f9172b14f6
28 changed files with 468 additions and 1803 deletions

10
.env
View file

@ -19,13 +19,3 @@ APP_ENV=dev
APP_SECRET=7189792ca5da6b84aff72ec1c63d95ae
###< symfony/framework-bundle ###
###> doctrine/doctrine-bundle ###
# Format described at https://www.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html#connecting-using-a-url
# IMPORTANT: You MUST configure your server version, either here or in config/packages/doctrine.yaml
#
# DATABASE_URL="sqlite:///%kernel.project_dir%/var/data.db"
# DATABASE_URL="mysql://app:!ChangeMe!@127.0.0.1:3306/app?serverVersion=8.0.32&charset=utf8mb4"
# DATABASE_URL="mysql://app:!ChangeMe!@127.0.0.1:3306/app?serverVersion=10.11.2-MariaDB&charset=utf8mb4"
DATABASE_URL="postgresql://app:!ChangeMe!@127.0.0.1:5432/app?serverVersion=16&charset=utf8"
###< doctrine/doctrine-bundle ###

View file

@ -10,10 +10,6 @@
"ext-iconv": "*",
"craue/formflow-bundle": "*",
"curl/curl": "^2.5",
"doctrine/dbal": "^3",
"doctrine/doctrine-bundle": "^2.12",
"doctrine/doctrine-migrations-bundle": "^3.3",
"doctrine/orm": "^3.1",
"friendsofsymfony/jsrouting-bundle": "*",
"phpdocumentor/reflection-docblock": "^5.4",
"phpstan/phpdoc-parser": "^1.29",

1568
composer.lock generated

File diff suppressed because it is too large Load diff

View file

@ -13,6 +13,4 @@ return [
Symfony\UX\Turbo\TurboBundle::class => ['all' => true],
Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true],
Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true],
];

View file

@ -1,52 +0,0 @@
doctrine:
dbal:
url: '%env(resolve:DATABASE_URL)%'
# IMPORTANT: You MUST configure your server version,
# either here or in the DATABASE_URL env var (see .env file)
#server_version: '16'
profiling_collect_backtrace: '%kernel.debug%'
use_savepoints: true
orm:
auto_generate_proxy_classes: true
enable_lazy_ghost_objects: true
report_fields_where_declared: true
validate_xml_mapping: true
naming_strategy: doctrine.orm.naming_strategy.underscore_number_aware
auto_mapping: true
mappings:
App:
type: attribute
is_bundle: false
dir: '%kernel.project_dir%/src/Entity'
prefix: 'App\Entity'
alias: App
controller_resolver:
auto_mapping: true
when@test:
doctrine:
dbal:
# "TEST_TOKEN" is typically set by ParaTest
dbname_suffix: '_test%env(default::TEST_TOKEN)%'
when@prod:
doctrine:
orm:
auto_generate_proxy_classes: false
proxy_dir: '%kernel.build_dir%/doctrine/orm/Proxies'
query_cache_driver:
type: pool
pool: doctrine.system_cache_pool
result_cache_driver:
type: pool
pool: doctrine.result_cache_pool
framework:
cache:
pools:
doctrine.result_cache_pool:
adapter: cache.app
doctrine.system_cache_pool:
adapter: cache.system

View file

@ -1,6 +0,0 @@
doctrine_migrations:
migrations_paths:
# namespace is arbitrary but should be different from App\Migrations
# as migrations classes should NOT be autoloaded
'DoctrineMigrations': '%kernel.project_dir%/migrations'
enable_profiler: false

View file

View file

@ -31,7 +31,7 @@ class ComposeType extends AbstractType
{
private $securityContext;
private Security $securityContext;
private $translator;
public function __construct(Security $securityContext, Translator $translator)
@ -40,7 +40,7 @@ class ComposeType extends AbstractType
$this->translator = $translator;
}
public function buildForm(FormBuilderInterface $builder, array $options)
public function buildForm(FormBuilderInterface $builder, array $options): void
{
/**@var $user MastodonAccount */
$user = $options['user'];
@ -123,7 +123,7 @@ class ComposeType extends AbstractType
}
public function configureOptions(OptionsResolver $resolver)
public function configureOptions(OptionsResolver $resolver): void
{
$resolver->setDefaults([
'data_class' => Compose::class,

View file

@ -14,7 +14,7 @@ use Craue\FormFlowBundle\Form\FormFlow;
class ConnectMastodonAccountFlow extends FormFlow
{
protected function loadStepsConfig()
protected function loadStepsConfig(): array
{
return [
[

View file

@ -17,7 +17,7 @@ use Symfony\Component\OptionsResolver\OptionsResolver;
class ConnectMastodonAccountType extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options)
public function buildForm(FormBuilderInterface $builder, array $options): void
{
switch ($options['flow_step']) {
case 1:
@ -38,12 +38,12 @@ class ConnectMastodonAccountType extends AbstractType
}
}
public function getBlockPrefix()
public function getBlockPrefix(): string
{
return 'addMastodonAccount';
}
public function configureOptions(OptionsResolver $resolver)
public function configureOptions(OptionsResolver $resolver): void
{
$resolver->setDefaults([
'validation_groups' => ['registration'],

View file

@ -18,14 +18,14 @@ class PollOptionType extends AbstractType
{
private $securityContext;
private Security $securityContext;
public function __construct(Security $securityContext)
{
$this->securityContext = $securityContext;
}
public function buildForm(FormBuilderInterface $builder, array $options)
public function buildForm(FormBuilderInterface $builder, array $options): void
{
$builder->add('title', TextType::class,
[
@ -36,7 +36,7 @@ class PollOptionType extends AbstractType
}
public function configureOptions(OptionsResolver $resolver)
public function configureOptions(OptionsResolver $resolver): void
{
$resolver->setDefaults([
'data_class' => PollOption::class,

View file

View file

@ -5,8 +5,6 @@ namespace App\Security;
use App\SocialEntity\Client;
use App\SocialEntity\CustomField;
use App\SocialEntity\Emoji;
use DateTimeInterface;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Symfony\Component\Security\Core\User\UserInterface;
@ -64,8 +62,8 @@ class MastodonAccount implements UserInterface
public function __construct()
{
$this->Fields = new ArrayCollection();
$this->Emojis = new ArrayCollection();
$this->Fields = array();
$this->Emojis = array();
}

View file

@ -66,7 +66,7 @@ class Mastodon_api
*
* @param string $path
*/
public function set_url($path)
public function set_url(string $path): void
{
$this->mastodon_url = $path;
}
@ -77,7 +77,7 @@ class Mastodon_api
* @param string $id
* @param string $secret
*/
public function set_client($id, $secret)
public function set_client(string $id, string $secret): void
{
$this->client_id = $id;
$this->client_secret = $secret;
@ -89,7 +89,7 @@ class Mastodon_api
* @param string $token
* @param string $type
*/
public function set_token($token, $type)
public function set_token(string $token, string $type): void
{
$this->token['access_token'] = $token;
$this->token['token_type'] = $type;
@ -100,7 +100,7 @@ class Mastodon_api
*
* @param array $scopes read / write / follow
*/
public function set_scopes($scopes)
public function set_scopes(array $scopes): void
{
$this->scopes = $scopes;
}
@ -119,7 +119,7 @@ class Mastodon_api
* string $response['client_id']
* string $response['client_secret']
*/
public function create_app($client_name, $scopes = array(), $redirect_uris = '', $website = '')
public function create_app(string $client_name, array $scopes = array(), string $redirect_uris = '', string $website = ''): array
{
$parameters = array();
@ -162,7 +162,7 @@ class Mastodon_api
*
* @return array $response
*/
private function _post($url, $parameters = array())
private function _post(string $url, array $parameters = array()): array
{
$params["method"] = "POST";
@ -185,7 +185,7 @@ class Mastodon_api
*
* @return array $data
*/
public function get_content_remote($url, $parameters = array())
public function get_content_remote(string $url, array $parameters = array()): array
{
$data = array();
@ -304,7 +304,7 @@ class Mastodon_api
* string $response['scope'] read
* int $response['created_at'] time
*/
public function login($id, $password)
public function login(string $id, string $password): array
{
$parameters = array();
$parameters['client_id'] = $this->client_id;
@ -340,7 +340,7 @@ class Mastodon_api
* string $response['scope'] read
* int $response['created_at'] time
*/
public function loginAuthorization($code, $redirect_uri = '')
public function loginAuthorization(string $code, string $redirect_uri = ''): array
{
$parameters = array();
$parameters['client_id'] = $this->client_id;
@ -367,7 +367,7 @@ class Mastodon_api
*
* @return string $response Authorization code
*/
public function getAuthorizationUrl($redirect_uri = '')
public function getAuthorizationUrl(string $redirect_uri = ''): string
{
if (empty($redirect_uri))
$redirect_uri = 'urn:ietf:wg:oauth:2.0:oob';
@ -389,7 +389,7 @@ class Mastodon_api
*
* @see https://your-domain/web/accounts/:id
*
* @param int $id
* @param string $id
*
* @return array $response
* int $response['id']
@ -408,7 +408,7 @@ class Mastodon_api
* string $response['header'] A base64 encoded image to display as the user's header image
* string $response['header_static']
*/
public function accounts($id)
public function accounts(string $id): array
{
return $this->_get('/api/v1/accounts/' . $id);
}
@ -421,7 +421,7 @@ class Mastodon_api
*
* @return array $response
*/
private function _get($url, $parameters = array())
private function _get(string $url, array $parameters = array()): array
{
$params["method"] = "GET";
@ -444,7 +444,7 @@ class Mastodon_api
*
* @return array $response
*/
public function accounts_verify_credentials()
public function accounts_verify_credentials(): array
{
return $this->_get('/api/v1/accounts/verify_credentials');
}
@ -462,7 +462,7 @@ class Mastodon_api
*
* @return array $response
*/
public function accounts_update_credentials($parameters)
public function accounts_update_credentials($parameters): array
{
return $this->_patch('/api/v1/accounts/update_credentials', $parameters);
}
@ -475,7 +475,7 @@ class Mastodon_api
*
* @return array $parameters
*/
private function _patch($url, $parameters = array())
private function _patch(string $url, array $parameters = array()): array
{
$params["method"] = "PATCH";
@ -497,11 +497,11 @@ class Mastodon_api
*
* @see https://your-domain/web/accounts/:id
*
* @param int $id
* @param string $id
*
* @return array $response
*/
public function accounts_followers($id)
public function accounts_followers(string $id): array
{
return $this->_get('/api/v1/accounts/' . $id . '/followers');
}
@ -511,11 +511,11 @@ class Mastodon_api
*
* @see https://your-domain/web/accounts/:id
*
* @param int $id
* @param string $id
*
* @return array $response
*/
public function accounts_following($id)
public function accounts_following(string $id): array
{
return $this->_get('/api/v1/accounts/' . $id . '/following');
}
@ -525,11 +525,11 @@ class Mastodon_api
*
* @see https://your-domain/web/accounts/:id
*
* @param int $id
* @param string $id
*
* @return array $response
*/
public function accounts_statuses($id)
public function accounts_statuses(string $id): array
{
return $this->_get('/api/v1/accounts/' . $id . '/statuses');
}
@ -539,11 +539,11 @@ class Mastodon_api
*
* @see https://your-domain/web/accounts/:id
*
* @param int $id
* @param string $id
*
* @return array $response
*/
public function accounts_own_statuses($id)
public function accounts_own_statuses(string $id): array
{
$response = $this->_get('/api/v1/accounts/' . $id . '/statuses?exclude_replies=1');
$result = [];
@ -563,11 +563,11 @@ class Mastodon_api
*
* @see https://your-domain/web/accounts/:id
*
* @param int $id
* @param string $id
*
* @return array $response
*/
public function accounts_follow($id)
public function accounts_follow(string $id): array
{
return $this->_post('/api/v1/accounts/' . $id . '/follow');
}
@ -577,11 +577,11 @@ class Mastodon_api
*
* @see https://your-domain/web/accounts/:id
*
* @param int $id
* @param string $id
*
* @return array $response
*/
public function accounts_unfollow($id)
public function accounts_unfollow(string $id): array
{
return $this->_post('/api/v1/accounts/' . $id . '/unfollow');
}
@ -591,11 +591,11 @@ class Mastodon_api
*
* @see https://your-domain/web/accounts/:id
*
* @param int $id
* @param string $id
*
* @return array $response
*/
public function accounts_block($id)
public function accounts_block(string $id): array
{
return $this->_post('/api/v1/accounts/' . $id . '/block');
}
@ -605,11 +605,11 @@ class Mastodon_api
*
* @see https://your-domain/web/accounts/:id
*
* @param int $id
* @param string $id
*
* @return array $response
*/
public function accounts_unblock($id)
public function accounts_unblock(string $id): array
{
return $this->_post('/api/v1/accounts/' . $id . '/unblock');
}
@ -619,11 +619,11 @@ class Mastodon_api
*
* @see https://your-domain/web/accounts/:id
*
* @param int $id
* @param string $id
*
* @return array $response
*/
public function accounts_mute($id)
public function accounts_mute(string $id): array
{
return $this->_post('/api/v1/accounts/' . $id . '/mute');
}
@ -633,11 +633,11 @@ class Mastodon_api
*
* @see https://your-domain/web/accounts/:id
*
* @param int $id
* @param string $id
*
* @return array $response
*/
public function accounts_unmute($id)
public function accounts_unmute(string $id): array
{
return $this->_post('/api/v1/accounts/' . $id . '/unmute');
}
@ -658,7 +658,7 @@ class Mastodon_api
* bool $response['muting']
* bool $response['requested']
*/
public function accounts_relationships($parameters)
public function accounts_relationships(array $parameters): array
{
return $this->_get('/api/v1/accounts/relationships', $parameters);
}
@ -672,7 +672,7 @@ class Mastodon_api
*
* @return array $response
*/
public function accounts_search($parameters)
public function accounts_search(array $parameters): array
{
return $this->_get('/api/v1/accounts/search', $parameters);
}
@ -682,7 +682,7 @@ class Mastodon_api
*
* @return array $response
*/
public function blocks()
public function blocks(): array
{
return $this->_get('/api/v1/blocks');
}
@ -692,7 +692,7 @@ class Mastodon_api
*
* @return array $response
*/
public function favourites()
public function favourites(): array
{
return $this->_get('/api/v1/favourites');
}
@ -702,7 +702,7 @@ class Mastodon_api
*
* @return array $response
*/
public function follow_requests()
public function follow_requests(): array
{
return $this->_get('/api/v1/follow_requests');
}
@ -712,11 +712,11 @@ class Mastodon_api
*
* @see https://your-domain/web/accounts/:id
*
* @param int $id
* @param string $id
*
* @return array $response
*/
public function follow_requests_authorize($id)
public function follow_requests_authorize(string $id): array
{
return $this->_post('/api/v1/follow_requests/authorize', array('id' => $id));
}
@ -726,10 +726,10 @@ class Mastodon_api
*
* @see https://your-domain/web/accounts/:id
*
* @param int $id
* @param string $id
* @return array $response
*/
public function follow_requests_reject($id)
public function follow_requests_reject(string $id): array
{
return $this->_post('/api/v1/follow_requests/reject', array('id' => $id));
}
@ -742,7 +742,7 @@ class Mastodon_api
* @param string $uri username@domain of the person you want to follow
* @return array $response
*/
public function follows($uri)
public function follows($uri): array
{
return $this->_post('/api/v1/follows', array('uri' => $uri));
}
@ -758,7 +758,7 @@ class Mastodon_api
* string $response['description']
* string $response['email']
*/
public function instance()
public function instance(): array
{
return $this->_get('/api/v1/instance');
}
@ -770,7 +770,7 @@ class Mastodon_api
*
* @return array $response
*/
public function mutes()
public function mutes(): array
{
return $this->_get('/api/v1/mutes');
}
@ -783,7 +783,7 @@ class Mastodon_api
*
* @return array $response
*/
public function notifications($parameters)
public function notifications($parameters): array
{
$url = '/api/v1/notifications';
@ -797,7 +797,7 @@ class Mastodon_api
*
* @return array $response
*/
public function notifications_clear()
public function notifications_clear(): array
{
return $this->_post('/api/v1/notifications/clear');
}
@ -809,7 +809,7 @@ class Mastodon_api
*
* @return array $response
*/
public function get_reports()
public function get_reports(): array
{
return $this->_get('/api/v1/reports');
}
@ -826,7 +826,7 @@ class Mastodon_api
*
* @return array $response
*/
public function post_reports($parameters)
public function post_reports(array $parameters): array
{
return $this->_post('/api/v1/reports', $parameters);
}
@ -842,7 +842,7 @@ class Mastodon_api
*
* @return array $response
*/
public function search($parameters)
public function search(array $parameters): array
{
return $this->_get('/api/v1/search', $parameters);
}
@ -852,11 +852,11 @@ class Mastodon_api
*
* Fetching a status
*
* @param int $id
* @param string $id
*
* @return array $response
*/
public function statuses($id)
public function statuses(string $id): array
{
return $this->_get('/api/v1/statuses/' . $id);
}
@ -866,11 +866,11 @@ class Mastodon_api
*
* Getting status context
*
* @param int $id
* @param string $id
*
* @return array $response
*/
public function statuses_context($id)
public function statuses_context(string $id): array
{
return $this->_get('/api/v1/statuses/' . $id . '/context');
}
@ -880,11 +880,11 @@ class Mastodon_api
*
* Getting a card associated with a status
*
* @param int $id
* @param string $id
*
* @return array $response
*/
public function statuses_card($id)
public function statuses_card(string $id): array
{
return $this->_get('/api/v1/statuses/' . $id . '/card');
}
@ -894,11 +894,11 @@ class Mastodon_api
*
* Getting who reblogged a status
*
* @param int $id
* @param string $id
*
* @return array $response
*/
public function statuses_reblogged_by($id)
public function statuses_reblogged_by(string $id): array
{
return $this->_get('/api/v1/statuses/' . $id . '/reblogged_by');
}
@ -908,11 +908,11 @@ class Mastodon_api
*
* Getting who favourited a status
*
* @param int $id
* @param string $id
*
* @return array $response
*/
public function statuses_favourited_by($id)
public function statuses_favourited_by(string $id): array
{
return $this->_get('/api/v1/statuses/' . $id . '/favourited_by');
}
@ -927,7 +927,7 @@ class Mastodon_api
*
* @return array $response
*/
public function post_media($parameters)
public function post_media(array $parameters): array
{
return $this->_post('/api/v1/media', $parameters);
}
@ -943,7 +943,7 @@ class Mastodon_api
* @param $parameters
* @return array $response
*/
public function update_media($id, $parameters)
public function update_media(string $id, array $parameters): array
{
return $this->_put('/api/v1/media/' . $id, $parameters);
}
@ -958,7 +958,7 @@ class Mastodon_api
*
* @return array $response
*/
private function _put($url, $parameters = array())
private function _put(string $url, array $parameters = array()): array
{
$params["method"] = "PUT";
@ -986,7 +986,7 @@ class Mastodon_api
*
* @return array $response
*/
public function post_statuses($parameters)
public function post_statuses(array $parameters): array
{
return $this->_post('/api/v1/statuses', $parameters);
}
@ -996,11 +996,11 @@ class Mastodon_api
*
* Deleting a status
*
* @param int $id
* @param string $id
*
* @return array $response empty
*/
public function delete_statuses($id)
public function delete_statuses(string $id): array
{
return $this->_delete('/api/v1/statuses/' . $id);
}
@ -1014,7 +1014,7 @@ class Mastodon_api
*
*/
private function _delete($url)
private function _delete(string $url): array
{
$parameters = array();
$parameters["method"] = "DELETE";
@ -1034,11 +1034,11 @@ class Mastodon_api
*
* Deleting a scheduled status
*
* @param int $id
* @param string $id
*
* @return array $response empty
*/
public function delete_scheduled($id)
public function delete_scheduled(string $id): array
{
return $this->_delete('/api/v1/scheduled_statuses/' . $id);
}
@ -1048,11 +1048,11 @@ class Mastodon_api
*
* Reblogging a status
*
* @param int $id
* @param string $id
*
* @return array $response
*/
public function statuses_reblog($id)
public function statuses_reblog(string $id): array
{
return $this->_post('/api/v1/statuses/' . $id . '/reblog');
}
@ -1062,11 +1062,11 @@ class Mastodon_api
*
* Unreblogging a status
*
* @param int $id
* @param string $id
*
* @return array $response
*/
public function statuses_unreblog($id)
public function statuses_unreblog(string $id): array
{
return $this->_post('/api/v1/statuses/' . $id . '/unreblog');
}
@ -1076,11 +1076,11 @@ class Mastodon_api
*
* Favouriting a status
*
* @param int $id
* @param string $id
*
* @return array $response
*/
public function statuses_favourite($id)
public function statuses_favourite(string $id): array
{
return $this->_post('/api/v1/statuses/' . $id . '/favourite');
}
@ -1090,11 +1090,11 @@ class Mastodon_api
*
* Unfavouriting a status
*
* @param int $id
* @param string $id
*
* @return array $response
*/
public function statuses_unfavourite($id)
public function statuses_unfavourite(string $id): array
{
return $this->_post('/api/v1/statuses/' . $id . '/unfavourite');
}
@ -1107,7 +1107,7 @@ class Mastodon_api
*
* @return array $response
*/
public function get_scheduled($parameters = array())
public function get_scheduled($parameters = array()): array
{
return $this->_get('/api/v1/scheduled_statuses/', $parameters);
}
@ -1117,7 +1117,7 @@ class Mastodon_api
*
* @return array $response
*/
public function timelines_home()
public function timelines_home(): array
{
return $this->_get('/api/v1/timelines/home');
}
@ -1130,7 +1130,7 @@ class Mastodon_api
*
* @return array $response
*/
public function timelines_public($parameters = array())
public function timelines_public(array $parameters = array()): array
{
return $this->_get('/api/v1/timelines/public', $parameters);
}
@ -1144,7 +1144,7 @@ class Mastodon_api
*
* @return array $response
*/
public function timelines_tag($hashtag, $parameters = array())
public function timelines_tag(string $hashtag, array $parameters = array()): array
{
return $this->_get('/api/v1/timelines/tag/' . $hashtag, $parameters);
}
@ -1160,7 +1160,7 @@ class Mastodon_api
* @param $host
* @return string|null
*/
public function getInstanceNodeInfo($host)
public function getInstanceNodeInfo(string $host): ?string
{
$curl = new Curl();
$url = "https://" . $host . "/.well-known/nodeinfo";
@ -1192,7 +1192,7 @@ class Mastodon_api
* @param $accountParams array
* @return MastodonAccount
*/
public function updateAccount(MastodonAccount $MastodonAccount, $accountParams)
public function updateAccount(MastodonAccount $MastodonAccount, array $accountParams): MastodonAccount
{
$MastodonAccount->setUsername($accountParams['username']);
@ -1241,7 +1241,7 @@ class Mastodon_api
return $MastodonAccount;
}
public function stringToDate($string_date): DateTime
public function stringToDate(string $string_date): DateTime
{
try {
return new DateTime($string_date);
@ -1252,10 +1252,10 @@ class Mastodon_api
/**
* getNotifications Hydrate an array of Notification from API reply
* @param $notificationParams
* @param $notificationParams array
* @return array
*/
public function getNotifications($notificationParams)
public function getNotifications(array $notificationParams): array
{
$notifications = [];
foreach ($notificationParams as $notificationParam)
@ -1268,7 +1268,7 @@ class Mastodon_api
* @param $notificationParams
* @return Notification
*/
public function getSingleNotification($notificationParams)
public function getSingleNotification($notificationParams): Notification
{
$notification = new Notification();
$notification->setId($notificationParams['id']);
@ -1282,10 +1282,10 @@ class Mastodon_api
/**
* getSingleAccount Hydrate a MastodonAccount from API reply
* @param $accountParams
* @param $accountParams array
* @return MastodonAccount
*/
public function getSingleAccount($accountParams)
public function getSingleAccount(array $accountParams): MastodonAccount
{
$MastodonAccount = new MastodonAccount();
@ -1342,10 +1342,10 @@ class Mastodon_api
/**
* getSingleStatus Hydrate a Status from API reply
* @param $statusParams
* @param $statusParams array
* @return Status
*/
public function getSingleStatus($statusParams)
public function getSingleStatus(array $statusParams): Status
{
$status = new Status();
@ -1476,7 +1476,7 @@ class Mastodon_api
* @param $statusParams
* @return array
*/
public function getStatuses($statusParams)
public function getStatuses($statusParams): array
{
$statuses = [];
foreach ($statusParams as $statusParam)
@ -1486,11 +1486,11 @@ class Mastodon_api
/**
* getScheduledStatuses Hydrate an array of Scheduled Status from API reply
* @param $statusParams
* @param $account
* @param $statusParams array
* @param $account MastodonAccount
* @return array
*/
public function getScheduledStatuses($statusParams, $account)
public function getScheduledStatuses(array $statusParams, MastodonAccount $account): array
{
$statuses = [];
foreach ($statusParams as $statusParam)
@ -1501,11 +1501,11 @@ class Mastodon_api
/**
* getSingleScheduledStatus Hydrate a scheduled Status from API reply
* @param $statusParams
* @param $account
* @param $statusParams array
* @param $account MastodonAccount
* @return Status
*/
public function getSingleScheduledStatus($statusParams, $account)
public function getSingleScheduledStatus(array $statusParams, MastodonAccount $account): Status
{
$status = new Status();
@ -1577,10 +1577,10 @@ class Mastodon_api
/**
* getSingleAttachment Hydrate an Attachment from API reply
* @param $mediaParams
* @param $mediaParams array
* @return Attachment
*/
public function getSingleAttachment($mediaParams)
public function getSingleAttachment(array $mediaParams): Attachment
{
$attachment = new Attachment();

View file

@ -6,10 +6,8 @@ namespace App\SocialEntity;
class Application
{
/** @var string */
private $name;
/** @var string */
private $website;
private string $name;
private string $website;
/**
* @return string

View file

@ -5,22 +5,15 @@ namespace App\SocialEntity;
class Attachment
{
/** @var string */
private $id;
/** @var string */
private $type;
/** @var string */
private $url;
/** @var string */
private $remote_url;
/** @var string */
private $preview_url;
/** @var string */
private $text_url;
/** @var string */
private $meta;
/** @var string */
private $description;
private string $id;
private string $type;
private string $url;
private string $remote_url;
private string $preview_url;
private string $text_url;
private string $meta;
private string $description;
/**
* @return string

View file

@ -5,30 +5,18 @@ namespace App\SocialEntity;
class Card
{
/** @var string */
private $url;
/** @var string */
private $title;
/** @var string */
private $description;
/** @var string */
private $image;
/** @var string */
private $type;
/** @var string */
private $author_name;
/** @var string */
private $author_url;
/** @var string */
private $provider_name;
/** @var string */
private $provider_url;
/** @var string */
private $html;
/** @var int */
private $width;
/** @var int */
private $height;
private string $url;
private string $title;
private string $description;
private string $image;
private string $type;
private string $author_name;
private string $author_url;
private string $provider_name;
private string $provider_url;
private string $html;
private int $width;
private int $height;
/**
* @return string
@ -222,5 +210,4 @@ class Card
$this->height = $height;
}
}

View file

@ -3,20 +3,17 @@
namespace App\SocialEntity;
use App\Security\MastodonAccount;
class Client
{
private $id;
private $host;
private $client_id;
private $client_secret;
private $account;
private $code;
private string $id;
private string $host;
private string $client_id;
private string $client_secret;
private MastodonAccount $account;
private string $code;
public function getId(): ?int
{

View file

@ -3,55 +3,41 @@
namespace App\SocialEntity;
use DateTime;
use DateTimeInterface;
use Doctrine\Common\Collections\ArrayCollection;
class Compose
{
private $id;
private string $id;
private string $content_warning;
private string $content;
private $content_warning;
private string $visibility;
private DateTime $created_at;
private DateTime $scheduled_at;
private DateTime $sent_at;
private bool $sensitive;
private string $in_reply_to_id;
private $content;
private $visibility;
private $created_at;
private $scheduled_at;
private $sent_at;
private $sensitive;
private $in_reply_to_id;
private $timeZone;
private $poll_options;
/** @var int */
private $poll_expires_at;
/** @var bool */
private $poll_multiple;
private string $timeZone;
/** @var PollOption[] */
private array $poll_options;
private int $poll_expires_at;
private bool $poll_multiple;
public function __construct()
{
$this->poll_options = new ArrayCollection();
$this->poll_options = array();
}
/**
* @return mixed
*/
public function getTimeZone()
public function getTimeZone(): string
{
return $this->timeZone;
}
/**
* @param mixed $timeZone
*/
public function setTimeZone($timeZone): void
{
$this->timeZone = $timeZone;
@ -63,7 +49,7 @@ class Compose
public function getSent()
{
return ($this->sent_at != null);
return ($this->sent_at != null && !empty($this->sent_at));
}
public function getId(): ?int
@ -108,29 +94,23 @@ class Compose
}
/**
* @return boolean
*/
public function getSensitive()
public function getSensitive(): bool
{
return $this->sensitive;
}
/**
* @param mixed $sensitive
*/
public function setSensitive(bool $sensitive): void
{
$this->sensitive = $sensitive;
}
public function getCreatedAt(): ?DateTimeInterface
public function getCreatedAt(): ?DateTime
{
return $this->created_at;
}
public function setCreatedAt(DateTimeInterface $created_at): self
public function setCreatedAt(DateTime $created_at): self
{
$this->created_at = $created_at;
@ -161,41 +141,29 @@ class Compose
return $this;
}
/**
* @return ArrayCollection|null
*/
public function getPollOptions(): ?ArrayCollection
public function getPollOptions(): ?array
{
return $this->poll_options;
}
/**
* @param ArrayCollection $poll_options
*/
public function setPollOptions(?ArrayCollection $poll_options): void
public function setPollOptions(?array $poll_options): void
{
$this->poll_options = $poll_options;
}
/**
* @return int
*/
public function getPollExpiresAt(): ?int
{
return $this->poll_expires_at;
}
/**
* @param int $poll_expires_at
*/
public function setPollExpiresAt(?int $poll_expires_at): void
{
$this->poll_expires_at = $poll_expires_at;
}
/**
* @return bool
*/
public function isPollMultiple(): ?bool
{
return $this->poll_multiple;

View file

@ -4,20 +4,20 @@ namespace App\SocialEntity;
use App\Security\MastodonAccount;
use DateTimeInterface;
use DateTime;
class CustomField
{
private $id;
private string $id;
private $name;
private string $name;
private $value;
private string $value;
private $verified_at;
private \DateTime $verified_at;
private $mastodonAccount;
private MastodonAccount $mastodonAccount;
public function __construct()
@ -41,12 +41,12 @@ class CustomField
return $this;
}
public function getVerifiedAt(): ?DateTimeInterface
public function getVerifiedAt(): ?DateTime
{
return $this->verified_at;
}
public function setVerifiedAt(?DateTimeInterface $verified_at): self
public function setVerifiedAt(?DateTime $verified_at): self
{
$this->verified_at = $verified_at;

View file

@ -7,17 +7,17 @@ use App\Security\MastodonAccount;
class Emoji
{
private $id;
private string $id;
private $shortcode;
private string $shortcode;
private $static_url;
private string $static_url;
private $url;
private string $url;
private $visible_in_picker;
private bool $visible_in_picker;
private $mastodonAccount;
private MastodonAccount $mastodonAccount;
public function __construct()

View file

@ -4,14 +4,10 @@ namespace App\SocialEntity;
class Mention
{
/** @var string */
private $url;
/** @var string */
private $username;
/** @var string */
private $acct;
/** @var string */
private $id;
private string $url;
private string $username;
private string $acct;
private string $id;
/**

View file

@ -8,16 +8,11 @@ use DateTime;
class Notification
{
/** @var string */
private $id;
/** @var string */
private $type;
/** @var DateTime */
private $created_at;
/** @var MastodonAccount */
private $account;
/** @var Status */
private $status;
private string $id;
private string $type;
private DateTime $created_at;
private MastodonAccount $account;
private Status $status;
/**

View file

@ -8,26 +8,19 @@ use DateTime;
class Poll
{
/** @var string */
private $id;
/** @var DateTime */
private $expires_at;
/** @var bool */
private $expired;
/** @var bool */
private $multiple;
/** @var int */
private $votes_count;
/** @var int */
private $voters_count;
/** @var bool */
private $voted;
private string $id;
private DateTime $expires_at;
private bool $expired;
private bool $multiple;
private int $votes_count;
private int $voters_count;
private bool $voted;
/** @var int[] */
private $own_votes;
private array $own_votes;
/** @var PollOption[] */
private $options;
private array $options;
/** @var Emoji[] */
private $emojis;
private array $emojis;
/**
* @return string

View file

@ -6,38 +6,27 @@ namespace App\SocialEntity;
class PollOption
{
/** @var string */
private $title;
/** @var int */
private $votes_count;
private string $title;
private int $votes_count;
/**
* @return string
*/
public function getTitle(): ?string
{
return $this->title;
}
/**
* @param string $title
*/
public function setTitle(?string $title): void
{
$this->title = $title;
}
/**
* @return int
*/
public function getVotesCount(): ?int
{
return $this->votes_count;
}
/**
* @param int $votes_count
*/
public function setVotesCount(?int $votes_count): void
{
$this->votes_count = $votes_count;

View file

@ -8,62 +8,38 @@ use DateTime;
class Status
{
/** @var string */
private $id;
/** @var string */
private $uri;
/** @var string */
private $url;
/** @var MastodonAccount */
private $account;
/** @var string */
private $in_reply_to_id;
/** @var string */
private $in_reply_to_account_id;
/** @var string */
private $content;
/** @var DateTime */
private $created_at;
/** @var DateTime */
private $scheduled_at;
private string $id;
private string $uri;
private string $url;
private MastodonAccount $account;
private string $in_reply_to_id;
private string $in_reply_to_account_id;
private string $content;
private DateTime $created_at;
private DateTime $scheduled_at;
/** @var Emoji[] */
private $emojis = [];
/** @var int */
private $replies_count;
/** @var int */
private $reblogs_count;
/** @var int */
private $favourites_count;
/** @var boolean */
private $reblogged;
/** @var boolean */
private $favourited;
/** @var boolean */
private $muted;
/** @var boolean */
private $sensitive_;
/** @var string */
private $spoiler_text;
/** @var string */
private $visibility;
private array $emojis = [];
private int $replies_count;
private int $reblogs_count;
private int $favourites_count;
private bool $reblogged;
private bool $favourited;
private bool $muted;
private bool $sensitive_;
private string $spoiler_text;
private string $visibility;
/** @var Attachment[] */
private $media_attachments = [];
private array $media_attachments = [];
/** @var Mention[] */
private $mentions = [];
private array $mentions = [];
/** @var Tag[] */
private $tags = [];
/** @var Card */
private $card;
/** @var Application */
private $application;
/** @var string */
private $language;
/** @var boolean */
private $pinned;
/** @var Status */
private $reblog;
/** @var Poll */
private $poll;
private array $tags = [];
private Card $card;
private Application $application;
private string $language;
private bool $pinned;
private Status $reblog;
private Poll $poll;
/**
* @return string

View file

@ -6,14 +6,10 @@ namespace App\SocialEntity;
class Tag
{
/** @var string */
private $name;
/** @var string */
private $url;
/** @var array */
private $history = [];
/** @var Status */
private $status;
private string $name;
private string $url;
private array $history = [];
private Status $status;
/**
* @return string

View file

@ -2,33 +2,6 @@
"craue/formflow-bundle": {
"version": "3.7.0"
},
"doctrine/doctrine-bundle": {
"version": "2.12",
"recipe": {
"repo": "github.com/symfony/recipes",
"branch": "main",
"version": "2.12",
"ref": "7b1b0b637b337f6beb895589948cd119da705524"
},
"files": [
"./config/packages/doctrine.yaml",
"./src/Entity/.gitignore",
"./src/Repository/.gitignore"
]
},
"doctrine/doctrine-migrations-bundle": {
"version": "3.3",
"recipe": {
"repo": "github.com/symfony/recipes",
"branch": "main",
"version": "3.1",
"ref": "1d01ec03c6ecbd67c3375c5478c9a423ae5d6a33"
},
"files": [
"./config/packages/doctrine_migrations.yaml",
"./migrations/.gitignore"
]
},
"friendsofsymfony/jsrouting-bundle": {
"version": "3.5",
"recipe": {