-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathOffsetDto.php
More file actions
45 lines (34 loc) · 819 Bytes
/
OffsetDto.php
File metadata and controls
45 lines (34 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php
/*
* This file has been created by developers from BitBag.
* Feel free to contact us once you face any issues or want to start
* You can find more information about us on https://bitbag.io and write us
* an email on hello@bitbag.io.
*/
declare(strict_types=1);
namespace BitBag\CodingStandard\Twigcs\Dto;
final class OffsetDto
{
/** @var int */
private $line = 0;
/** @var int */
private $column = 0;
public function getLine(): int
{
return $this->line;
}
public function setLine(int $line): self
{
$this->line = $line;
return $this;
}
public function getColumn(): int
{
return $this->column;
}
public function setColumn(int $column): self
{
$this->column = $column;
return $this;
}
}