6 lines
64 B
PHP
6 lines
64 B
PHP
<?php
|
|
|
|
class PrivatePoint {
|
|
public $x;
|
|
private $y = 3;
|
|
} |