This commit is contained in:
2024-05-20 14:40:53 +03:00
parent 31a9f8776d
commit 6744d4e537
9 changed files with 61 additions and 4 deletions

View File

@ -1,6 +1,5 @@
<?php
namespace src;
class Information
{
@ -20,9 +19,10 @@ class Information
$this->phoneNumber = $phoneNumber;
$this->email = $email;
}
public function writeInformation()
public function fullInformation()
{
echo $this->foolName . ";" . $this->gender . ";" . $this->DateOfBirthday . ";" . $this->countryCode . $this->phoneNumber . ";" . $this->email . ";";
return $this->foolName . ";" . $this->gender . ";" . $this->DateOfBirthday . ";" . $this->countryCode . $this->phoneNumber . ";" . $this->email . ";";
}
}

6
src/additionallyInfo.php Normal file
View File

@ -0,0 +1,6 @@
<?php
class additionallyInfo
{
}

6
src/contacts.php Normal file
View File

@ -0,0 +1,6 @@
<?php
class contacnts
{
}

View File

@ -1,6 +1,5 @@
<?php
namespace src;
class fullName
{