You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
296 B

<?php
class CardAttributes {
public $color;
public $shape;
public $fill;
public $number;
public $id;
function __construct($color, $shape, $fill, $number, $id) {
$this->color = $color;
$this->shape = $shape;
$this->fill = $fill;
$this->number = $number;
$this->id = $id;
}
}