A YAML file cannot contain tabs as indentation

后端 未结 4 1440
孤街浪徒
孤街浪徒 2020-11-30 05:23

This is my first work with Symfony 2. All I am trying to do here is whenever the user clicks on the submit button he will go to another page.

But my index page isn\'

4条回答
  •  迷失自我
    2020-11-30 06:11

    IF you are using EditorConfig make sure to add this to your .editorconfig file

    [*.yml]
    indent_style = space
    indent_size = 4
    

    you can change indent_size to 2, depends on your preferences

提交回复
热议问题