17 lines
		
	
	
		
			288 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			288 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php namespace MapGuesser\Database;
 | 
						|
 | 
						|
class RawExpression
 | 
						|
{
 | 
						|
    private string $expression;
 | 
						|
 | 
						|
    public function __construct(string $expression)
 | 
						|
    {
 | 
						|
        $this->expression = $expression;
 | 
						|
    }
 | 
						|
 | 
						|
    public function __toString(): string
 | 
						|
    {
 | 
						|
        return $this->expression;
 | 
						|
    }
 | 
						|
}
 |