@@ -41,7 +41,7 @@ public function feed(Feed $feed): void
4141 $ this ->setLastActivity ($ feed );
4242 }
4343
44- protected function performItem ($ file , Feed $ feed ): void
44+ protected function performItem ($ file , Feed $ feed ): void // @pest-ignore-type
4545 {
4646 $ feed ->builder ()->chunkById ($ feed ->chunkSize (), function (Collection $ models ) use ($ file , $ feed ) {
4747 $ content = [];
@@ -56,12 +56,12 @@ protected function performItem($file, Feed $feed): void
5656 });
5757 }
5858
59- protected function performHeader ($ file , Feed $ feed ): void
59+ protected function performHeader ($ file , Feed $ feed ): void // @pest-ignore-type
6060 {
6161 $ this ->append ($ file , $ feed ->header (), $ feed ->path ());
6262 }
6363
64- protected function performInfo ($ file , Feed $ feed ): void
64+ protected function performInfo ($ file , Feed $ feed ): void // @pest-ignore-type
6565 {
6666 if (blank ($ info = $ feed ->info ()->toArray ())) {
6767 return ;
@@ -72,7 +72,7 @@ protected function performInfo($file, Feed $feed): void
7272 $ this ->append ($ file , PHP_EOL . $ value , $ feed ->path ());
7373 }
7474
75- protected function performRoot ($ file , Feed $ feed ): void
75+ protected function performRoot ($ file , Feed $ feed ): void // @pest-ignore-type
7676 {
7777 if (! $ name = $ feed ->root ()->name ) {
7878 return ;
@@ -85,7 +85,7 @@ protected function performRoot($file, Feed $feed): void
8585 $ this ->append ($ file , $ value , $ feed ->path ());
8686 }
8787
88- protected function performFooter ($ file , Feed $ feed ): void
88+ protected function performFooter ($ file , Feed $ feed ): void // @pest-ignore-type
8989 {
9090 $ value = '' ;
9191
@@ -105,17 +105,17 @@ protected function makeRootAttributes(ElementData $item): string
105105 ->implode (' ' );
106106 }
107107
108- protected function append ($ file , string $ content , string $ path ): void
108+ protected function append ($ file , string $ content , string $ path ): void // @pest-ignore-type
109109 {
110110 $ this ->filesystem ->append ($ file , $ content , $ path );
111111 }
112112
113- protected function release ($ file , string $ path ): void
113+ protected function release ($ file , string $ path ): void // @pest-ignore-type
114114 {
115115 $ this ->filesystem ->release ($ file , $ path );
116116 }
117117
118- protected function openFile (string $ path )
118+ protected function openFile (string $ path ) // @pest-ignore-type
119119 {
120120 return $ this ->filesystem ->open ($ path );
121121 }
0 commit comments