Skip to content

Commit

Permalink
Что такое класс. Создание объекта класса.
Browse files Browse the repository at this point in the history
  • Loading branch information
Razzwan committed Nov 9, 2015
1 parent 4372f0c commit 5482336
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions web/index.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
<?php

echo 'Привет! Если ты видишь в браузере это сообщение,<br>
значит сервер настроен правильно и можно приступать к занятиям!';
class Room
{
private $color = 'red';

public function changeColor($color)
{
$this->color = $color;
}

public function getColor()
{
return $this->color;
}
}

0 comments on commit 5482336

Please sign in to comment.