14 lines
203 B
PHP
14 lines
203 B
PHP
<?php
|
|
|
|
namespace App\Interfaces;
|
|
|
|
abstract class Metar
|
|
{
|
|
/**
|
|
* Implement the METAR- Return the string
|
|
* @param $icao
|
|
* @return mixed
|
|
*/
|
|
abstract public function get($icao);
|
|
}
|