jccp_a/laravel
2025-11-13 14:33:45 +08:00
..
app 1 2025-11-12 17:57:30 +08:00
bootstrap 1 2025-11-12 17:57:30 +08:00
config 1 2025-11-12 17:57:30 +08:00
database 1 2025-11-12 17:57:30 +08:00
public 1 2025-11-12 17:57:30 +08:00
resources 1 2025-11-12 17:57:30 +08:00
routes 1 2025-11-12 17:57:30 +08:00
scripts 1 2025-11-12 17:57:30 +08:00
storage 1 2025-11-12 17:57:30 +08:00
tests 1 2025-11-12 17:57:30 +08:00
vendor no message 2025-11-13 14:33:45 +08:00
.editorconfig 1 2025-11-12 17:57:30 +08:00
.env.example 1 2025-11-12 17:57:30 +08:00
.gitignore 1 2025-11-12 17:57:30 +08:00
artisan 1 2025-11-12 17:57:30 +08:00
build.log 1 2025-11-12 17:57:30 +08:00
composer.json 1 2025-11-12 17:57:30 +08:00
composer.lock 1 2025-11-12 17:57:30 +08:00
package.json 1 2025-11-12 17:57:30 +08:00
phpunit.xml 1 2025-11-12 17:57:30 +08:00
postcss.config.js 1 2025-11-12 17:57:30 +08:00
README.md 1 2025-11-12 17:57:30 +08:00
tailwind.config.js 1 2025-11-12 17:57:30 +08:00
vite.config.js 1 2025-11-12 17:57:30 +08:00

//// 原

$oResult = make("xxx");

$aResult = aa();

if (Flow::isFailResult($aResult)) { return $oResult->fail()->fetch(); }

return $oResult->done();

//// 新

$oResult = makeR("xxx");

$oResult = aa();

if ($oResult->isFail()) { return $oRsult->fetch(); }