$this->hp = 100; // берётся из БД
public function getHp(): int
{
return $this->country_code == 'by' ? $this->hp * 1.2 : $this->hp;
}
public function test(Test $test)
{
$test->hp = $test->getHp() - 20;
$test->save(); // пишем 80, если Беларусь - 100
}
// ПРОДОЛЖАЕМ
$this->hp; // 80, если Беларусь - 100
public function getHp(): int
{
return $this->country_code == 'by' ? $this->hp * 1.2 : $this->hp;
}
public function test(Test $test)
{
$test->hp = $test->getHp() - 20;
$test->save(); // пишем 60, если Беларусь - 100
}
обрезать ссылку по первый включительно С конца слэш