generated from ConductionNL/Proto-component-commonground
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from ConductionNL/analysis-PxG2YW
Apply fixes from StyleCI
- Loading branch information
Showing
13 changed files
with
98 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
<?php | ||
|
||
return [ | ||
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true], | ||
Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle::class => ['all' => true], | ||
Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true], | ||
Symfony\Bundle\MercureBundle\MercureBundle::class => ['all' => true], | ||
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true], | ||
Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true], | ||
ApiPlatform\Core\Bridge\Symfony\Bundle\ApiPlatformBundle::class => ['all' => true], | ||
Nelmio\CorsBundle\NelmioCorsBundle::class => ['all' => true], | ||
Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true], | ||
Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true], | ||
Conduction\CommonGroundBundle\CommonGroundBundle::class => ['all' => true], | ||
Stof\DoctrineExtensionsBundle\StofDoctrineExtensionsBundle::class => ['all' => true], | ||
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true], | ||
Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle::class => ['all' => true], | ||
Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true], | ||
Symfony\Bundle\MercureBundle\MercureBundle::class => ['all' => true], | ||
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true], | ||
Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true], | ||
ApiPlatform\Core\Bridge\Symfony\Bundle\ApiPlatformBundle::class => ['all' => true], | ||
Nelmio\CorsBundle\NelmioCorsBundle::class => ['all' => true], | ||
Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true], | ||
Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true], | ||
Conduction\CommonGroundBundle\CommonGroundBundle::class => ['all' => true], | ||
Stof\DoctrineExtensionsBundle\StofDoctrineExtensionsBundle::class => ['all' => true], | ||
Lexik\Bundle\JWTAuthenticationBundle\LexikJWTAuthenticationBundle::class => ['all' => true], | ||
Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle::class => ['all' => true], | ||
Tbbc\MoneyBundle\TbbcMoneyBundle::class => ['all' => true], | ||
Knp\Bundle\MarkdownBundle\KnpMarkdownBundle::class => ['all' => true], | ||
Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle::class => ['all' => true], | ||
Tbbc\MoneyBundle\TbbcMoneyBundle::class => ['all' => true], | ||
Knp\Bundle\MarkdownBundle\KnpMarkdownBundle::class => ['all' => true], | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,13 +2,11 @@ | |
|
||
namespace App\Entity; | ||
|
||
use ApiPlatform\Core\Annotation\ApiProperty; | ||
use ApiPlatform\Core\Annotation\ApiResource; | ||
use Doctrine\ORM\Mapping as ORM; | ||
use Ramsey\Uuid\UuidInterface; | ||
use Gedmo\Mapping\Annotation as Gedmo; | ||
use Symfony\Component\Serializer\Annotation\MaxDepth; | ||
use Symfony\Component\Serializer\Annotation\Groups; | ||
use Symfony\Component\Serializer\Annotation\MaxDepth; | ||
use Symfony\Component\Validator\Constraints as Assert; | ||
|
||
/** | ||
|
@@ -17,7 +15,6 @@ | |
* This entity represents a payment of an invoice. | ||
* | ||
* @author Barry Brands <[email protected]> | ||
* | ||
* @license EUPL <https://github.com/ConductionNL/betaalservice/blob/master/LICENSE.md> | ||
* | ||
* @category entity | ||
|
@@ -32,6 +29,7 @@ class Payment | |
{ | ||
/** | ||
* @var UuidInterface | ||
* | ||
* @example e2984465-190a-4562-829e-a8cca81aa35d | ||
* | ||
* @Assert\Uuid | ||
|
@@ -45,6 +43,7 @@ class Payment | |
|
||
/** | ||
* @var string The provider that handles the payment | ||
* | ||
* @example iDeal | ||
* | ||
* @Assert\NotNull | ||
|
@@ -58,6 +57,7 @@ class Payment | |
|
||
/** | ||
* @var string The payment id of this payment | ||
* | ||
* @example 87782426a21cbd70fc9823cbe1e024fb25804c833743b41529a23ae94b3b1cc2 | ||
* | ||
* @Assert\NotNull | ||
|
@@ -71,6 +71,7 @@ class Payment | |
|
||
/** | ||
* @var string The status of this payment | ||
* | ||
* @example open | ||
* | ||
* @Assert\NotNull | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.