Beispiel #1
0
/**
 * 2016-01-30
 * @param null|string|int|ScopeInterface $store [optional]
 * @return string
 */
function df_store_code($store = null)
{
    return df_scope_code($store);
}
Beispiel #2
0
 /**
  * 2016-01-29
  * @param int $i Номер строки
  * @param int $j Номер столбца
  * @param string|null $key [optional]
  * @param null|string|int|S|Store $s [optional]
  * @param string|null $d [optonal]
  * @return Font
  */
 protected function _matrix($i, $j, $key = null, $s = null, $d = null)
 {
     return dfa(dfa(dfc($this, function ($key, $s) {
         return $this->json($key, $s);
     }, [$key ?: df_caller_f(), df_scope_code($this->scope($s))]), $i, []), $j, $d);
 }