graphql-php/src/Language/SourceLocation.php

15 lines
215 B
PHP
Raw Normal View History

2015-07-15 20:05:46 +03:00
<?php
namespace GraphQL\Language;
class SourceLocation
{
public $line;
public $column;
public function __construct($line, $col)
{
$this->line = $line;
$this->column = $col;
}
}