mirror of
https://github.com/retailcrm/graphql-php.git
synced 2024-11-30 08:56:04 +03:00
15 lines
215 B
PHP
15 lines
215 B
PHP
|
<?php
|
||
|
namespace GraphQL\Language;
|
||
|
|
||
|
class SourceLocation
|
||
|
{
|
||
|
public $line;
|
||
|
public $column;
|
||
|
|
||
|
public function __construct($line, $col)
|
||
|
{
|
||
|
$this->line = $line;
|
||
|
$this->column = $col;
|
||
|
}
|
||
|
}
|