biz-framework icon indicating copy to clipboard operation
biz-framework copied to clipboard

A PHP Service Layer Framework.

Results 5 biz-framework issues
Sort by recently updated
recently updated
newest added

![image](https://user-images.githubusercontent.com/26426560/69401972-7d010980-0d31-11ea-98be-8b35aa6a79be.png) `src/Dao/GeneralDaoImpl.php `中update方法会调用updateById()和updateByConditions(),前者返回更新后的资源,后者确返回生效条数。 期望都返回更新后的资源。

Codeages\Biz\Framework\Context\Biz 先注入参数debug为true调用parent方法 再设置debug为false 再调用$biz['dao.metadata_reader'],判断debug为false $biz['cache_directory']未定义报错

你好,biz-framework/src/Dao/GeneralDaoImpl.php update方法 当条件是数组的时候,条件不在$declares['conditions'],会更新全表,建议增加一个判断。

src/Queue/Worker.php:105 - 113 protected function executeJob($job) { // ..... try { $result = $job->execute(); } catch (\Exception $e) { $this->logger->error($this->createMessage("Execute job #{$job->getId()} error: {$e->getMessage()}")); $this->shouldQuit = true; } catch (\Throwable...