The name of the property data. The colons and slashes you see are not part of the class property.
"data":"threewp_broadcast\broadcast_data":private
threewp_broadcast\broadcast_datarepresents the namespace and the class to which the property belongs, and :privatemeans that the property data private, so you cannot access it without the class method.
, , getData(), .
, :
namespace A;
class B{
private $test;
}
:
object(A\B)
["test":"A\B":private]=>
NULL
}
, "test":"A\B":private .
Update
threewp_broadcast\broadcast_data getData(), :
$test->broadcast_data->getData()['linked_children'];
get_linked_children(), :
$test->broadcast_data->get_linked_children();