6
6
namespace Magento \Deploy \Model ;
7
7
8
8
use Symfony \Component \Console \Output \OutputInterface ;
9
+ use Magento \Framework \App \State ;
10
+ use Magento \Framework \App \DeploymentConfig \Writer ;
9
11
use Magento \Framework \App \Filesystem \DirectoryList ;
10
12
use Magento \Framework \Exception \LocalizedException ;
11
13
use Magento \User \Model \ResourceModel \User \Collection as UserCollection ;
@@ -26,8 +28,8 @@ class Filesystem
26
28
* Access permissions to the files are set during deploy Magento 2, directly after
27
29
* uploading code of Magento. Also it is possible to specify the value
28
30
* of inverse mask for setting access permissions to files generated by Magento.
29
- * @see http://devdocs.magento.com/guides/v2.0/install-gde/install/post-install-umask.html.
30
- * @see http://devdocs.magento.com/guides/v2.0/install-gde/prereq/file-system-perms.html}.
31
+ * @link http://devdocs.magento.com/guides/v2.0/install-gde/install/post-install-umask.html
32
+ * @link http://devdocs.magento.com/guides/v2.0/install-gde/prereq/file-system-perms.html
31
33
*/
32
34
const PERMISSIONS_FILE = 0640 ;
33
35
@@ -38,8 +40,8 @@ class Filesystem
38
40
* Access permissions to the directories are set during deploy Magento 2, directly after
39
41
* uploading code of Magento. Also it is possible to specify the value
40
42
* of inverse mask for setting access permissions to directories generated by Magento.
41
- * @see http://devdocs.magento.com/guides/v2.0/install-gde/install/post-install-umask.html umask
42
- * @see http://devdocs.magento.com/guides/v2.0/install-gde/prereq/file-system-perms.html}
43
+ * @link http://devdocs.magento.com/guides/v2.0/install-gde/install/post-install-umask.html
44
+ * @link http://devdocs.magento.com/guides/v2.0/install-gde/prereq/file-system-perms.html
43
45
*/
44
46
const PERMISSIONS_DIR = 0750 ;
45
47
@@ -308,8 +310,8 @@ public function cleanupFilesystem($directoryCodeList)
308
310
* Access permissions to the files and directories are set during deploy Magento 2, directly after
309
311
* uploading code of Magento. Also it is possible to specify the value
310
312
* of inverse mask for setting access permissions to files and directories generated by Magento.
311
- * @see http://devdocs.magento.com/guides/v2.0/install-gde/install/post-install-umask.html
312
- * @see http://devdocs.magento.com/guides/v2.0/install-gde/prereq/file-system-perms.html}
313
+ * @link http://devdocs.magento.com/guides/v2.0/install-gde/install/post-install-umask.html
314
+ * @link http://devdocs.magento.com/guides/v2.0/install-gde/prereq/file-system-perms.html
313
315
*/
314
316
protected function changePermissions ($ directoryCodeList , $ dirPermissions , $ filePermissions )
315
317
{
@@ -332,8 +334,8 @@ protected function changePermissions($directoryCodeList, $dirPermissions, $fileP
332
334
* Access permissions to the files and directories are set during deploy Magento 2, directly after
333
335
* uploading code of Magento. Also it is possible to specify the value
334
336
* of inverse mask for setting access permissions to files and directories generated by Magento.
335
- * @see http://devdocs.magento.com/guides/v2.0/install-gde/install/post-install-umask.html
336
- * @see http://devdocs.magento.com/guides/v2.0/install-gde/prereq/file-system-perms.html}
337
+ * @link http://devdocs.magento.com/guides/v2.0/install-gde/install/post-install-umask.html
338
+ * @link http://devdocs.magento.com/guides/v2.0/install-gde/prereq/file-system-perms.html
337
339
*/
338
340
public function lockStaticResources ()
339
341
{
0 commit comments