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.
33 lines
453 B
33 lines
453 B
<?php
|
|
|
|
namespace metier;
|
|
|
|
class Flux
|
|
{
|
|
private string $id;
|
|
private string $flux;
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getFlux(): string
|
|
{
|
|
return $this->flux;
|
|
}
|
|
|
|
/**
|
|
* @param string $flux
|
|
*/
|
|
public function setFlux(string $flux): void
|
|
{
|
|
$this->flux = $flux;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getId(): string
|
|
{
|
|
return $this->id;
|
|
}
|
|
} |