Skip to content

Commit

Permalink
fix PSR no-newline code lint
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianStorz committed Jun 19, 2023
1 parent 81ff43e commit ab179c7
Show file tree
Hide file tree
Showing 13 changed files with 0 additions and 13 deletions.
1 change: 0 additions & 1 deletion src/Command/ImportQuestionnairesCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@

class ImportQuestionnairesCommand extends StatisticsCommand
{

/** @var EntityManagerInterface $em */
private EntityManagerInterface $em;

Expand Down
1 change: 0 additions & 1 deletion src/Controller/Api/Apps/QuapController.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

class QuapController extends AbstractController
{

/** @var QuapService $quapService */
private QuapService $quapService;

Expand Down
1 change: 0 additions & 1 deletion src/DTO/Mapper/AspectMapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

class AspectMapper
{

public static function createAspectFromEntity(Aspect $aspect, string $locale): AspectDTO
{
$dto = new AspectDTO();
Expand Down
1 change: 0 additions & 1 deletion src/DTO/Mapper/HelpMapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

class HelpMapper
{

public static function createHelpFromEntity(Help $help, string $locale): HelpDTO
{

Expand Down
1 change: 0 additions & 1 deletion src/DTO/Mapper/QuestionMapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

class QuestionMapper
{

public static function createQuestionFromEntity(Question $question, string $locale): QuestionDTO
{

Expand Down
1 change: 0 additions & 1 deletion src/DTO/Mapper/QuestionnaireMapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

class QuestionnaireMapper
{

public static function createQuestionnaireFromEntity(Questionnaire $questionnaire, string $locale): QuestionnaireDTO
{

Expand Down
1 change: 0 additions & 1 deletion src/DTO/Model/Apps/Quap/AspectDTO.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

class AspectDTO
{

/**
* @var int $id
*/
Expand Down
1 change: 0 additions & 1 deletion src/DTO/Model/Apps/Quap/HelpDTO.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

class HelpDTO
{

/**
* @var string $help
*/
Expand Down
1 change: 0 additions & 1 deletion src/DTO/Model/Apps/Quap/QuestionDTO.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

class QuestionDTO
{

/**
* @var int $id
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

class DemographicDepartmentAggregatorTestFixtures extends AggregatorTestFixture implements FixtureGroupInterface
{

public const AGGREGATOR_NAME = 'demographic-department';

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

class DemographicGroupAggregatorTestFixtures extends AggregatorTestFixture implements FixtureGroupInterface
{

public const AGGREGATOR_NAME = 'demographic-group';

/**
Expand Down
1 change: 0 additions & 1 deletion src/Entity/Aggregated/AggregatedQuap.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
*/
class AggregatedQuap extends AggregatedEntity
{

/**
* @ORM\ManyToOne(targetEntity=Questionnaire::class, inversedBy = "widgetQuap")
* @ORM\JoinColumn(nullable=false)
Expand Down
1 change: 0 additions & 1 deletion src/Exception/ApiException.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,4 @@

class ApiException extends HttpException
{

}

0 comments on commit ab179c7

Please sign in to comment.