WIP: feature_paste #1

Draft
Miroslavsckaya wants to merge 24 commits from feature_paste into master
5 changed files with 6 additions and 0 deletions
Showing only changes of commit 78ebba425b - Show all commits

View file

@ -1,4 +1,5 @@
<?php
skobkin marked this conversation as resolved
Review

I can't leave you a comment on src/Controller/.gitignore, so I'll ask here.

Why do you need it?

I can't leave you a comment on `src/Controller/.gitignore`, so I'll ask here. Why do you need it?
declare(strict_types = 1);
skobkin marked this conversation as resolved Outdated

Please do not forget declare(strict_types=1);

Please do not forget `declare(strict_types=1);`
namespace App\Controller;

View file

View file

@ -1,4 +1,6 @@
<?php
declare(strict_types = 1);
skobkin marked this conversation as resolved Outdated

Please do not forget declare(strict_types=1);

Please do not forget `declare(strict_types=1);`
namespace App\Entity;
use App\Repository\PasteRepository;

View file

@ -1,4 +1,6 @@
<?php
declare(strict_types = 1);
skobkin marked this conversation as resolved Outdated

Please do not forget declare(strict_types=1);

Please do not forget `declare(strict_types=1);`
namespace App\Form\Type;
use Symfony\Component\Form\AbstractType;

View file

@ -1,4 +1,5 @@
<?php
skobkin marked this conversation as resolved
Review

Can't leave a comment for src/Repository/.gitignore, so I'll ask here.

Do you need it?

Can't leave a comment for `src/Repository/.gitignore`, so I'll ask here. Do you need it?
declare(strict_types = 1);
skobkin marked this conversation as resolved Outdated

Please do not forget declare(strict_types=1);

Please do not forget `declare(strict_types=1);`
namespace App\Repository;