<?php
class Goodbye {
  const LEAVING_MESSAGE = "Thank you for visiting www.bubbleslearn.ir!";
}

echo Goodbye::LEAVING_MESSAGE;
?>