예제 #1
0
 public function phpSerializable(PhpSerializationMap $map)
 {
     return $map->newObject($this, [$this->m_type, $this->GetSerializedName()]);
 }
예제 #2
0
파일: RouteMap.php 프로젝트: jdauie/bramble
 public function phpSerializable(PhpSerializationMap $map)
 {
     return $map->newObject($this, [$this->m_lookup]);
 }
예제 #3
0
파일: Template.php 프로젝트: jdauie/skhema
 public function phpSerializable(PhpSerializationMap $map)
 {
     return $map->newObject($this, [$this->m_root, $this->m_name, $this->m_parent, $this->m_includes, $this->m_filters]);
 }
예제 #4
0
 public function phpSerializable(PhpSerializationMap $map)
 {
     return $map->newObject($this, [$this->m_regex, $this->m_params, $this->m_actions, $this->m_methods, (int) $this->m_method]);
 }
예제 #5
0
파일: Node.php 프로젝트: jdauie/skhema
 public function phpSerializable(PhpSerializationMap $map)
 {
     return $map->newObject($this, [$this->m_token, NULL, $this->m_children]);
 }