i trying generate phpdocs code have written, getting error telling me "no summary found file". tried using this page had similar topic, not specific problem.
as far can tell, example below formatted properly, still give me error.
<?php namespace app\example; /** * summary section file itself. * * goes more depth whole file. *`enter code here` * @author author * */ /** * standard first function (function_1). long description of file * looks in example doc page. don't worry of says, meaningless. * part of first paragraph, , main summary. next part more detailed stuff * people can read if want. * * lorem ipsum dolor sit amet, @ falli maluisset nec, paulo deterruisset no vix. prompta ancillae * cu mea, insolens recteque te pri, vulputate disputando persequeris id quo. ei iracundia * efficiendi eos. eam ut illum euismod erroribus, praesent assueverit @ vix. wisi nostrum ad vel, * pro eros repudiare, ei mea fierent appareat deseruisse. * * @param parametertype1 $param1 param1 description. * @param string $param2 param2 description. * @param string $param3 param3 description. * @param $param4 - param4 description. * * @return void */ function function_1(parametertype1 $param1, $param2, $param3, &$param4) { //this code. } /** * standard second function (function_2) long description of file * looks in example doc page. don't worry of says, meaningless. * part of first paragraph, , main summary. next part more detailed stuff * people can read if want. * * lorem ipsum dolor sit amet, @ falli maluisset nec, paulo deterruisset no vix. prompta ancillae * cu mea, insolens recteque te pri, vulputate disputando persequeris id quo. ei iracundia * efficiendi eos. eam ut illum euismod erroribus, praesent assueverit @ vix. wisi nostrum ad vel, * pro eros repudiare, ei mea fierent appareat deseruisse. * * @param paramtype2 $param1 param1 description. * @param $param2 - param2 description. * * @return string $returnstatement */ function function_2(paramtype2 $param1, &$param2) { //this code. return $returnstatement; } ?>
i sure simple fix code generate docs properly, has been frustrating trying figure out causing error.
Comments
Post a Comment