forked from LiveCarta/PayPal-PHP-SDK
Updated stubs to support namespace
This commit is contained in:
27
tests/PayPal/Test/Common/NestedClass.php
Normal file
27
tests/PayPal/Test/Common/NestedClass.php
Normal file
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
namespace PayPal\Test\Common;
|
||||
use PayPal\Common\PPModel;
|
||||
class NestedClass extends PPModel {
|
||||
|
||||
public function setId($id) {
|
||||
$this->id = $id;
|
||||
}
|
||||
public function getId() {
|
||||
return $this->id;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param PayPal\Test\Common\ArrayClass $info
|
||||
*/
|
||||
public function setInfo($info) {
|
||||
$this->info = $info;
|
||||
}
|
||||
/**
|
||||
*
|
||||
* @return PayPal\Test\Common\ArrayClass
|
||||
*/
|
||||
public function getInfo() {
|
||||
return $this->info;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user