XenForo
Administrative
- Thread starter
- Admin
- #1
I try to understand the parent thing; here I am now:
A method defines something like in entities:
Code:
This is like: Hey give me the basket with the fruits, I put an apple inside and give the basket back.
Then I found methods called with a value
Code:
Read more
ادامه مطلب...
A method defines something like in entities:
Code:
Code:
public static function getStructure(Structure $structure)
{
$structure = parent::getStructure($structure);
add something to $structure
return $structure;
}
This is like: Hey give me the basket with the fruits, I put an apple inside and give the basket back.
Then I found methods called with a value
Code:
public function...
Read more
ادامه مطلب...