File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -289,24 +289,32 @@ public function fixPermissionsWithChmod(string $mode = '0777') : self
289289 {
290290 $ this ->permissionMethod = 'chmod ' ;
291291 $ this ->permissionMode = $ mode ;
292+
293+ return $ this ;
292294 }
293295
294296 public function fixPermissionsWithChown (string $ webServerUser ) : self
295297 {
296298 $ this ->permissionMethod = 'chown ' ;
297299 $ this ->permissionUser = $ webServerUser ;
300+
301+ return $ this ;
298302 }
299303
300304 public function fixPermissionsWithChgrp (string $ webServerGroup ) : self
301305 {
302306 $ this ->permissionMethod = 'chgrp ' ;
303307 $ this ->permissionGroup = $ webServerGroup ;
308+
309+ return $ this ;
304310 }
305311
306312 public function fixPermissionsWithAcl (string $ webServerUser ) : self
307313 {
308314 $ this ->permissionMethod = 'acl ' ;
309315 $ this ->permissionUser = $ webServerUser ;
316+
317+ return $ this ;
310318 }
311319
312320 // Relative to the project root directory
You can’t perform that action at this time.
0 commit comments