Skip to content

Commit 96d82ac

Browse files
committed
Replaced concat with nowdoc
1 parent e4ba4c6 commit 96d82ac

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

src/UploadType.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,10 @@
77
final class UploadType extends \Graphpinator\Type\ScalarType
88
{
99
protected const NAME = 'Upload';
10-
protected const DESCRIPTION = 'Upload type - represents file which was send to server.'
11-
. \PHP_EOL . 'By GraphQL viewpoint it is scalar type, but it must be used as input only.';
10+
protected const DESCRIPTION = <<<'NOWDOC'
11+
Upload type - represents file which was send to server.
12+
By GraphQL viewpoint it is scalar type, but it must be used as input only.;
13+
NOWDOC;
1214

1315
public function validateNonNullValue(mixed $rawValue) : bool
1416
{

0 commit comments

Comments
 (0)