/** * [checkAssets description] * @return [type] */ public function checkAssets() { $deviseJs = public_path() . '/packages/devisephp/cms/js/devise.min.js'; if (!$this->File->exists($deviseJs)) { return false; } return true; }
/** * [getCode description]. * * @return [type] */ public function getCode() { return $this->fileManager->exists('code') ? $this->fileManager->get('code') : null; }