コード例 #1
0
ファイル: EvalNameToken.php プロジェクト: jdauie/skhema
 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
ファイル: CompiledRoute.php プロジェクト: jdauie/bramble
 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]);
 }