graphql-php/src/Language/SourceLocation.php
2015-07-15 23:05:46 +06:00

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;
}
}