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.
SAE4.01_FORMULAIRE/Source/BusinessClass/Keyword.php

32 lines
457 B

<?php
namespace BusinessClass;
class Keyword
{
private string $word;
/**
* @param string $word
*/
public function __construct(string $word)
{
$this->word = $word;
}
/**
* @return string
*/
public function getWord(): string
{
return $this->word;
}
/**
* @param string $word
*/
public function setWord(string $word): void
{
$this->word = $word;
}
}