You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Php_RSS/mvc_PSR4_twig/modeles/Flux.php

24 lines
317 B

<?php
namespace modeles;
class Flux
{
private string $flux;
/**
* @return string
*/
public function getFlux(): string
{
return $this->flux;
}
/**
* @param string $flux
*/
public function setFlux(string $flux): void
{
$this->flux = $flux;
}
}