コード例 #1
0
 /**
  * @return bool
  */
 public function isJavascriptTickerEnabled()
 {
     return $this->config->booleanValue('processing.js_ticker.enabled');
 }
コード例 #2
0
 /**
  * @test
  */
 public function is_default_boolean_returned_when_path_not_exists()
 {
     $arrayReader = new ArrayReader(array('hash' => array('with' => array('nested' => true))));
     $this->assertFalse($arrayReader->booleanValue('hash.with.unknown'));
 }
コード例 #3
0
 /**
  * Metadata of a message handler should contain the "chunk_support" flag
  * if the handler can collect and/or process chunks.
  *
  * @return bool
  */
 public function canHandleChunks()
 {
     return $this->metadata->booleanValue('chunk_support');
 }