forked from LiveCarta/PayPal-PHP-SDK
19 lines
345 B
PHP
19 lines
345 B
PHP
<?php
|
|
namespace PayPal\Test\Common;
|
|
use PayPal\Common\PPModel;
|
|
class SimpleClass extends PPModel {
|
|
|
|
public function setName($name) {
|
|
$this->name = $name;
|
|
}
|
|
public function getName() {
|
|
return $this->name;
|
|
}
|
|
|
|
public function setDescription($desc) {
|
|
$this->desc = $desc;
|
|
}
|
|
public function getDescription() {
|
|
return $this->desc;
|
|
}
|
|
} |