![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mcoil.corals.io/vendor/binarytorch/larecipe/src/Traits/ |
<?php namespace BinaryTorch\LaRecipe\Traits; trait HasDocumentationAttributes { protected $title; protected $index; protected $version; protected $content; protected $canonical; protected $docsRoute; protected $sectionPage; protected $defaultVersion; protected $currentSection; protected $statusCode = 200; protected $publishedVersions; protected $defaultVersionUrl; /** * @return string */ public function getTitleAttribute() { return $this->title; } /** * @return mixed */ public function getIndexAttribute() { return $this->index; } /** * @return string */ public function getVersionAttribute() { return $this->version; } /** * @return string */ public function getContentAttribute() { return $this->content; } /** * @return string */ public function getCanonicalAttribute() { return $this->canonical; } /** * @return string */ public function getDefaultVersionUrlAttribute() { return $this->defaultVersionUrl; } /** * @return string */ public function getCurrentSectionAttribute() { return $this->currentSection; } /** * @return int */ public function getStatusCodeAttribute() { return $this->statusCode; } /** * @return string */ public function getPublishedVersionsAttribute() { return $this->publishedVersions; } }