Skip to content

Commit

Permalink
afup#1437 declare_strict_types
Browse files Browse the repository at this point in the history
  • Loading branch information
stakovicz committed Oct 23, 2024
1 parent b77a622 commit 34d086f
Show file tree
Hide file tree
Showing 410 changed files with 819 additions and 0 deletions.
1 change: 1 addition & 0 deletions .php_cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ return PhpCsFixer\Config::create()
'no_unused_imports' => true,
'no_whitespace_in_blank_line' => true,
'method_argument_space' => false,
'declare_strict_types' => true,
])
->setFinder($finder)
;
2 changes: 2 additions & 0 deletions sources/AppBundle/AppBundle.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace AppBundle;

use Symfony\Component\HttpKernel\Bundle\Bundle;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace AppBundle\Association\CompanyMembership;

use AppBundle\Association\MembershipReminderInterface;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);


namespace AppBundle\Association\CompanyMembership;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);


namespace AppBundle\Association\CompanyMembership;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);


namespace AppBundle\Association\CompanyMembership;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);


namespace AppBundle\Association\CompanyMembership;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);


namespace AppBundle\Association\CompanyMembership;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);


namespace AppBundle\Association\CompanyMembership;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);


namespace AppBundle\Association\CompanyMembership;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace AppBundle\Association\CompanyMembership;

use AppBundle\Association\Event\UserDisabledEvent;
Expand Down
2 changes: 2 additions & 0 deletions sources/AppBundle/Association/Event/NewMemberEvent.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace AppBundle\Association\Event;

use AppBundle\Association\Model\User;
Expand Down
2 changes: 2 additions & 0 deletions sources/AppBundle/Association/Event/UserDisabledEvent.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace AppBundle\Association\Event;

use AppBundle\Association\Model\User;
Expand Down
2 changes: 2 additions & 0 deletions sources/AppBundle/Association/Form/AdminCompanyMemberType.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);


namespace AppBundle\Association\Form;

Expand Down
2 changes: 2 additions & 0 deletions sources/AppBundle/Association/Form/BadgeType.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace AppBundle\Association\Form;

use Symfony\Component\Form\AbstractType;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);


namespace AppBundle\Association\Form;

Expand Down
2 changes: 2 additions & 0 deletions sources/AppBundle/Association/Form/CompanyMemberType.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);


namespace AppBundle\Association\Form;

Expand Down
2 changes: 2 additions & 0 deletions sources/AppBundle/Association/Form/CompanyPublicProfile.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace AppBundle\Association\Form;

use AppBundle\Offices\OfficesCollection;
Expand Down
2 changes: 2 additions & 0 deletions sources/AppBundle/Association/Form/ContactDetailsType.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);


namespace AppBundle\Association\Form;

Expand Down
2 changes: 2 additions & 0 deletions sources/AppBundle/Association/Form/HTML_QuickForm.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace AppBundle\Association\Form;

class HTML_QuickForm extends \HTML_QuickForm
Expand Down
2 changes: 2 additions & 0 deletions sources/AppBundle/Association/Form/HelpMessageExtension.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace AppBundle\Association\Form;

use Symfony\Component\Form\AbstractTypeExtension;
Expand Down
2 changes: 2 additions & 0 deletions sources/AppBundle/Association/Form/TicketEventType.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace AppBundle\Association\Form;

use AppBundle\Event\Model\TicketEventType as ModelTicketEventType;
Expand Down
2 changes: 2 additions & 0 deletions sources/AppBundle/Association/Form/UserBadgeType.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace AppBundle\Association\Form;

use AppBundle\Event\Model\Repository\BadgeRepository;
Expand Down
2 changes: 2 additions & 0 deletions sources/AppBundle/Association/Form/UserEditFormData.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace AppBundle\Association\Form;

use AppBundle\Association\Model\User;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace AppBundle\Association\Form;

use AppBundle\Association\Model\User;
Expand Down
2 changes: 2 additions & 0 deletions sources/AppBundle/Association/Form/UserEditType.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace AppBundle\Association\Form;

use Afup\Site\Association\Personnes_Morales;
Expand Down
2 changes: 2 additions & 0 deletions sources/AppBundle/Association/Form/UserType.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);


namespace AppBundle\Association\Form;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace AppBundle\Association;

require_once __DIR__ . '/../../Afup/fonctions.php';
Expand Down
2 changes: 2 additions & 0 deletions sources/AppBundle/Association/MembershipReminderInterface.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);


namespace AppBundle\Association;

Expand Down
2 changes: 2 additions & 0 deletions sources/AppBundle/Association/Model/CompanyMember.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);


namespace AppBundle\Association\Model;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);


namespace AppBundle\Association\Model;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace AppBundle\Association\Model;

use CCMBenchmark\Ting\Entity\NotifyProperty;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace AppBundle\Association\Model;

use CCMBenchmark\Ting\Entity\NotifyProperty;
Expand Down
2 changes: 2 additions & 0 deletions sources/AppBundle/Association/Model/GeneralMeetingVote.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace AppBundle\Association\Model;

use CCMBenchmark\Ting\Entity\NotifyProperty;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);


namespace AppBundle\Association\Model\Repository;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace AppBundle\Association\Model\Repository;

use AppBundle\Association\Model\CompanyMember;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace AppBundle\Association\Model\Repository;

use AppBundle\Association\Model\GeneralMeetingQuestion;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace AppBundle\Association\Model\Repository;

use AppBundle\Association\Model\GeneralMeetingResponse;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace AppBundle\Association\Model\Repository;

use AppBundle\Association\Model\GeneralMeetingVote;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);


namespace AppBundle\Association\Model\Repository;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);


namespace AppBundle\Association\Model\Repository;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace AppBundle\Association\Model\Repository;

use AppBundle\Association\Model\TechletterSubscription;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace AppBundle\Association\Model\Repository;

use AppBundle\Association\Model\TechletterUnsubscription;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace AppBundle\Association\Model\Repository;

use AppBundle\Association\Model\CompanyMember;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);


namespace AppBundle\Association\Model;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace AppBundle\Association\Model;

use CCMBenchmark\Ting\Entity\NotifyProperty;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace AppBundle\Association\Model;

use CCMBenchmark\Ting\Entity\NotifyProperty;
Expand Down
2 changes: 2 additions & 0 deletions sources/AppBundle/Association/Model/User.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace AppBundle\Association\Model;

use AppBundle\Association\NotifiableInterface;
Expand Down
2 changes: 2 additions & 0 deletions sources/AppBundle/Association/NotifiableInterface.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);


namespace AppBundle\Association;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace AppBundle\Association\UserMembership;

use AppBundle\Association\MembershipReminderInterface;
Expand Down
Loading

0 comments on commit 34d086f

Please sign in to comment.