mirror of
https://github.com/retailcrm/graphql-php.git
synced 2024-12-02 09:46: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;
|
|
}
|
|
}
|