├── .eslintrc.json ├── .github └── workflows │ ├── ci.yml │ └── publish.yml ├── .gitignore ├── .vscodeignore ├── CHANGELOG.md ├── FUNDING.yml ├── LICENSE ├── README.md ├── images ├── add.gif ├── constructor.gif ├── customizable.gif ├── existing.gif ├── icon.png ├── multiline.gif ├── remove.gif ├── rename.gif └── type.gif ├── out ├── addPropertyStatement.js ├── addPropertyStatement.js.map ├── changePropertyType.js ├── changePropertyType.js.map ├── class.js ├── class.js.map ├── constants.js ├── constants.js.map ├── constructor.js ├── constructor.js.map ├── extension.js ├── extension.js.map ├── factory.js ├── factory.js.map ├── insertProperty.js ├── insertProperty.js.map ├── locator.js ├── locator.js.map ├── property.js ├── property.js.map ├── removeProperty.js ├── removeProperty.js.map ├── renameProperty.js ├── renameProperty.js.map ├── test │ ├── fixtures │ │ ├── breakConstructorIntoMultiline │ │ │ ├── inputs │ │ │ │ └── Constructor.php │ │ │ └── outputs │ │ │ │ └── Constructor.php │ │ ├── changePropertyType │ │ │ ├── inputs │ │ │ │ ├── ConstructorDocblock.php │ │ │ │ ├── ConstructorWithMultipleProperties.php │ │ │ │ ├── ConstructorWithMultiplePropertiesCursorInConstructorDocblock.php │ │ │ │ ├── OtherPropertiesStatementDocblock.php │ │ │ │ ├── PropertyStatementDocblock.php │ │ │ │ ├── PropertyWithoutType.php │ │ │ │ └── TypedPropertyStatement.php │ │ │ └── outputs │ │ │ │ ├── ConstructorDocblock.php │ │ │ │ ├── ConstructorWithMultipleProperties.php │ │ │ │ ├── ConstructorWithMultiplePropertiesCursorInConstructorDocblock.php │ │ │ │ ├── OtherPropertiesStatementDocblock.php │ │ │ │ ├── PropertyStatementDocblock.php │ │ │ │ ├── PropertyWithoutType.php │ │ │ │ └── TypedPropertyStatement.php │ │ ├── customizations │ │ │ ├── inputs │ │ │ │ ├── ConstructorBreakIntoMultiline.php │ │ │ │ ├── ConstructorBreakIntoMultilineLength.php │ │ │ │ ├── ConstructorDefaultVisibility.php │ │ │ │ ├── PropertyAddDocblock.php │ │ │ │ ├── PropertyDefaultVisibility.php │ │ │ │ └── PropertyMultilineDocblock.php │ │ │ └── outputs │ │ │ │ ├── ConstructorBreakIntoMultiline.php │ │ │ │ ├── ConstructorBreakIntoMultilineLength.php │ │ │ │ ├── ConstructorDefaultVisibility.php │ │ │ │ ├── PropertyAddDocblock.php │ │ │ │ ├── PropertyDefaultVisibility.php │ │ │ │ └── PropertyMultilineDocblock.php │ │ ├── existing │ │ │ ├── inputs │ │ │ │ ├── ConstructorDocblockUsingDocblock.php │ │ │ │ ├── DocblockTypeWithParameter.php │ │ │ │ ├── EmptyClass.php │ │ │ │ ├── EmptyConstructor.php │ │ │ │ ├── ExistingConstructor.php │ │ │ │ ├── NullableType.php │ │ │ │ ├── UseDocblock.php │ │ │ │ ├── UseNullableDocblock.php │ │ │ │ └── UseType.php │ │ │ └── outputs │ │ │ │ ├── ConstructorDocblockUsingDocblock.php │ │ │ │ ├── DocblockTypeWithParameter.php │ │ │ │ ├── EmptyClass.php │ │ │ │ ├── EmptyConstructor.php │ │ │ │ ├── ExistingConstructor.php │ │ │ │ ├── NullableType.php │ │ │ │ ├── UseDocblock.php │ │ │ │ ├── UseNullableDocblock.php │ │ │ │ └── UseType.php │ │ ├── new │ │ │ ├── inputs │ │ │ │ ├── AddConstructorDocblock.php │ │ │ │ ├── ClassKeyword.php │ │ │ │ ├── EmptyClass.php │ │ │ │ ├── EmptyConstructor.php │ │ │ │ ├── ExistingConstructor.php │ │ │ │ ├── ExistingProperty.php │ │ │ │ ├── ExistingPropertyAssignation.php │ │ │ │ ├── ExistingPropertyInConstructor.php │ │ │ │ ├── MultilineConstructor.php │ │ │ │ ├── MultipleClasses.php │ │ │ │ ├── MultipleClassesCursorInFirst.php │ │ │ │ ├── MultipleClassesCursorInLast.php │ │ │ │ ├── TabIndentation.php │ │ │ │ └── UpdateConstructorDocblock.php │ │ │ └── outputs │ │ │ │ ├── AddConstructorDocblock.php │ │ │ │ ├── ClassKeyword.php │ │ │ │ ├── EmptyClass.php │ │ │ │ ├── EmptyConstructor.php │ │ │ │ ├── ExistingConstructor.php │ │ │ │ ├── ExistingProperty.php │ │ │ │ ├── ExistingPropertyAssignation.php │ │ │ │ ├── ExistingPropertyInConstructor.php │ │ │ │ ├── MultilineConstructor.php │ │ │ │ ├── MultipleClasses.php │ │ │ │ ├── MultipleClassesCursorInFirst.php │ │ │ │ ├── MultipleClassesCursorInLast.php │ │ │ │ ├── TabIndentation.php │ │ │ │ └── UpdateConstructorDocblock.php │ │ ├── remove │ │ │ ├── inputs │ │ │ │ ├── ConstructorDocblock.php │ │ │ │ ├── ConstructorWithMultipleProperties.php │ │ │ │ ├── ConstructorWithMultiplePropertiesCursorInArgument.php │ │ │ │ ├── ConstructorWithMultiplePropertiesCursorInAssignment.php │ │ │ │ ├── ConstructorWithMultiplePropertiesCursorInConstructorDocblock.php │ │ │ │ ├── ConstructorWithMultiplePropertiesCursorInPropertyStatement.php │ │ │ │ ├── ConstructorWithOneProperty.php │ │ │ │ ├── ConstructorWithOtherArgument.php │ │ │ │ ├── ConstructorWithSingleProperty.php │ │ │ │ ├── ConstructorWithSinglePropertyAndDocblock.php │ │ │ │ ├── EmptyConstructor.php │ │ │ │ ├── PropertyWithDocblock.php │ │ │ │ └── TypedProperty.php │ │ │ └── outputs │ │ │ │ ├── ConstructorDocblock.php │ │ │ │ ├── ConstructorWithMultipleProperties.php │ │ │ │ ├── ConstructorWithMultiplePropertiesCursorInArgument.php │ │ │ │ ├── ConstructorWithMultiplePropertiesCursorInAssignment.php │ │ │ │ ├── ConstructorWithMultiplePropertiesCursorInConstructorDocblock.php │ │ │ │ ├── ConstructorWithMultiplePropertiesCursorInPropertyStatement.php │ │ │ │ ├── ConstructorWithOneProperty.php │ │ │ │ ├── ConstructorWithOtherArgument.php │ │ │ │ ├── ConstructorWithSingleProperty.php │ │ │ │ ├── ConstructorWithSinglePropertyAndDocblock.php │ │ │ │ ├── EmptyConstructor.php │ │ │ │ ├── PropertyWithDocblock.php │ │ │ │ └── TypedProperty.php │ │ └── rename │ │ │ ├── inputs │ │ │ ├── ConstructorDocblock.php │ │ │ ├── ConstructorWithMultipleProperties.php │ │ │ ├── ConstructorWithMultiplePropertiesCursorInArgument.php │ │ │ ├── ConstructorWithMultiplePropertiesCursorInAssignment.php │ │ │ ├── ConstructorWithMultiplePropertiesCursorInConstructorDocblock.php │ │ │ ├── ConstructorWithMultiplePropertiesCursorInPropertyStatement.php │ │ │ ├── ConstructorWithSingleProperty.php │ │ │ ├── MultiplePropertyStatements.php │ │ │ └── PropertyReferences.php │ │ │ └── outputs │ │ │ ├── ConstructorDocblock.php │ │ │ ├── ConstructorWithMultipleProperties.php │ │ │ ├── ConstructorWithMultiplePropertiesCursorInArgument.php │ │ │ ├── ConstructorWithMultiplePropertiesCursorInAssignment.php │ │ │ ├── ConstructorWithMultiplePropertiesCursorInConstructorDocblock.php │ │ │ ├── ConstructorWithMultiplePropertiesCursorInPropertyStatement.php │ │ │ ├── ConstructorWithSingleProperty.php │ │ │ ├── MultiplePropertyStatements.php │ │ │ └── PropertyReferences.php │ ├── runTest.js │ ├── runTest.js.map │ └── suite │ │ ├── RemoveProperty.test.js.map │ │ ├── addExistingProperty.test.js │ │ ├── addExistingProperty.test.js.map │ │ ├── addProperty.test.js │ │ ├── addProperty.test.js.map │ │ ├── breakConstructorIntoMultiline.test.js │ │ ├── breakConstructorIntoMultiline.test.js.map │ │ ├── changePropertyType.test.js │ │ ├── changePropertyType.test.js.map │ │ ├── customizations.test.js │ │ ├── customizations.test.js.map │ │ ├── index.js │ │ ├── index.js.map │ │ ├── removeProperty.test.js │ │ ├── removeProperty.test.js.map │ │ ├── renameProperty.test.js │ │ ├── renameProperty.test.js.map │ │ ├── utils.js │ │ └── utils.js.map ├── utils.js └── utils.js.map ├── package.json ├── src ├── addPropertyStatement.ts ├── changePropertyType.ts ├── class.ts ├── constants.ts ├── constructor.ts ├── extension.ts ├── insertProperty.ts ├── locator.ts ├── property.ts ├── removeProperty.ts ├── renameProperty.ts ├── test │ ├── runTest.ts │ └── suite │ │ ├── addExistingProperty.test.ts │ │ ├── addProperty.test.ts │ │ ├── breakConstructorIntoMultiline.test.ts │ │ ├── changePropertyType.test.ts │ │ ├── customizations.test.ts │ │ ├── index.ts │ │ ├── removeProperty.test.ts │ │ ├── renameProperty.test.ts │ │ └── utils.ts └── utils.ts ├── tsconfig.json └── webviews └── 1.0.1 ├── css └── main.css ├── i ├── code.jpg └── icon.png └── index.html /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/FUNDING.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/README.md -------------------------------------------------------------------------------- /images/add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/images/add.gif -------------------------------------------------------------------------------- /images/constructor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/images/constructor.gif -------------------------------------------------------------------------------- /images/customizable.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/images/customizable.gif -------------------------------------------------------------------------------- /images/existing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/images/existing.gif -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/images/icon.png -------------------------------------------------------------------------------- /images/multiline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/images/multiline.gif -------------------------------------------------------------------------------- /images/remove.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/images/remove.gif -------------------------------------------------------------------------------- /images/rename.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/images/rename.gif -------------------------------------------------------------------------------- /images/type.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/images/type.gif -------------------------------------------------------------------------------- /out/addPropertyStatement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/addPropertyStatement.js -------------------------------------------------------------------------------- /out/addPropertyStatement.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/addPropertyStatement.js.map -------------------------------------------------------------------------------- /out/changePropertyType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/changePropertyType.js -------------------------------------------------------------------------------- /out/changePropertyType.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/changePropertyType.js.map -------------------------------------------------------------------------------- /out/class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/class.js -------------------------------------------------------------------------------- /out/class.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/class.js.map -------------------------------------------------------------------------------- /out/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/constants.js -------------------------------------------------------------------------------- /out/constants.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/constants.js.map -------------------------------------------------------------------------------- /out/constructor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/constructor.js -------------------------------------------------------------------------------- /out/constructor.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/constructor.js.map -------------------------------------------------------------------------------- /out/extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/extension.js -------------------------------------------------------------------------------- /out/extension.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/extension.js.map -------------------------------------------------------------------------------- /out/factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/factory.js -------------------------------------------------------------------------------- /out/factory.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/factory.js.map -------------------------------------------------------------------------------- /out/insertProperty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/insertProperty.js -------------------------------------------------------------------------------- /out/insertProperty.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/insertProperty.js.map -------------------------------------------------------------------------------- /out/locator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/locator.js -------------------------------------------------------------------------------- /out/locator.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/locator.js.map -------------------------------------------------------------------------------- /out/property.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/property.js -------------------------------------------------------------------------------- /out/property.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/property.js.map -------------------------------------------------------------------------------- /out/removeProperty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/removeProperty.js -------------------------------------------------------------------------------- /out/removeProperty.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/removeProperty.js.map -------------------------------------------------------------------------------- /out/renameProperty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/renameProperty.js -------------------------------------------------------------------------------- /out/renameProperty.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/renameProperty.js.map -------------------------------------------------------------------------------- /out/test/fixtures/breakConstructorIntoMultiline/inputs/Constructor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/breakConstructorIntoMultiline/inputs/Constructor.php -------------------------------------------------------------------------------- /out/test/fixtures/breakConstructorIntoMultiline/outputs/Constructor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/breakConstructorIntoMultiline/outputs/Constructor.php -------------------------------------------------------------------------------- /out/test/fixtures/changePropertyType/inputs/ConstructorDocblock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/changePropertyType/inputs/ConstructorDocblock.php -------------------------------------------------------------------------------- /out/test/fixtures/changePropertyType/inputs/ConstructorWithMultipleProperties.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/changePropertyType/inputs/ConstructorWithMultipleProperties.php -------------------------------------------------------------------------------- /out/test/fixtures/changePropertyType/inputs/ConstructorWithMultiplePropertiesCursorInConstructorDocblock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/changePropertyType/inputs/ConstructorWithMultiplePropertiesCursorInConstructorDocblock.php -------------------------------------------------------------------------------- /out/test/fixtures/changePropertyType/inputs/OtherPropertiesStatementDocblock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/changePropertyType/inputs/OtherPropertiesStatementDocblock.php -------------------------------------------------------------------------------- /out/test/fixtures/changePropertyType/inputs/PropertyStatementDocblock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/changePropertyType/inputs/PropertyStatementDocblock.php -------------------------------------------------------------------------------- /out/test/fixtures/changePropertyType/inputs/PropertyWithoutType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/changePropertyType/inputs/PropertyWithoutType.php -------------------------------------------------------------------------------- /out/test/fixtures/changePropertyType/inputs/TypedPropertyStatement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/changePropertyType/inputs/TypedPropertyStatement.php -------------------------------------------------------------------------------- /out/test/fixtures/changePropertyType/outputs/ConstructorDocblock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/changePropertyType/outputs/ConstructorDocblock.php -------------------------------------------------------------------------------- /out/test/fixtures/changePropertyType/outputs/ConstructorWithMultipleProperties.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/changePropertyType/outputs/ConstructorWithMultipleProperties.php -------------------------------------------------------------------------------- /out/test/fixtures/changePropertyType/outputs/ConstructorWithMultiplePropertiesCursorInConstructorDocblock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/changePropertyType/outputs/ConstructorWithMultiplePropertiesCursorInConstructorDocblock.php -------------------------------------------------------------------------------- /out/test/fixtures/changePropertyType/outputs/OtherPropertiesStatementDocblock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/changePropertyType/outputs/OtherPropertiesStatementDocblock.php -------------------------------------------------------------------------------- /out/test/fixtures/changePropertyType/outputs/PropertyStatementDocblock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/changePropertyType/outputs/PropertyStatementDocblock.php -------------------------------------------------------------------------------- /out/test/fixtures/changePropertyType/outputs/PropertyWithoutType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/changePropertyType/outputs/PropertyWithoutType.php -------------------------------------------------------------------------------- /out/test/fixtures/changePropertyType/outputs/TypedPropertyStatement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/changePropertyType/outputs/TypedPropertyStatement.php -------------------------------------------------------------------------------- /out/test/fixtures/customizations/inputs/ConstructorBreakIntoMultiline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/customizations/inputs/ConstructorBreakIntoMultiline.php -------------------------------------------------------------------------------- /out/test/fixtures/customizations/inputs/ConstructorBreakIntoMultilineLength.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/customizations/inputs/ConstructorBreakIntoMultilineLength.php -------------------------------------------------------------------------------- /out/test/fixtures/customizations/inputs/ConstructorDefaultVisibility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/customizations/inputs/ConstructorDefaultVisibility.php -------------------------------------------------------------------------------- /out/test/fixtures/customizations/inputs/PropertyAddDocblock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/customizations/inputs/PropertyAddDocblock.php -------------------------------------------------------------------------------- /out/test/fixtures/customizations/inputs/PropertyDefaultVisibility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/customizations/inputs/PropertyDefaultVisibility.php -------------------------------------------------------------------------------- /out/test/fixtures/customizations/inputs/PropertyMultilineDocblock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/customizations/inputs/PropertyMultilineDocblock.php -------------------------------------------------------------------------------- /out/test/fixtures/customizations/outputs/ConstructorBreakIntoMultiline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/customizations/outputs/ConstructorBreakIntoMultiline.php -------------------------------------------------------------------------------- /out/test/fixtures/customizations/outputs/ConstructorBreakIntoMultilineLength.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/customizations/outputs/ConstructorBreakIntoMultilineLength.php -------------------------------------------------------------------------------- /out/test/fixtures/customizations/outputs/ConstructorDefaultVisibility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/customizations/outputs/ConstructorDefaultVisibility.php -------------------------------------------------------------------------------- /out/test/fixtures/customizations/outputs/PropertyAddDocblock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/customizations/outputs/PropertyAddDocblock.php -------------------------------------------------------------------------------- /out/test/fixtures/customizations/outputs/PropertyDefaultVisibility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/customizations/outputs/PropertyDefaultVisibility.php -------------------------------------------------------------------------------- /out/test/fixtures/customizations/outputs/PropertyMultilineDocblock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/customizations/outputs/PropertyMultilineDocblock.php -------------------------------------------------------------------------------- /out/test/fixtures/existing/inputs/ConstructorDocblockUsingDocblock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/existing/inputs/ConstructorDocblockUsingDocblock.php -------------------------------------------------------------------------------- /out/test/fixtures/existing/inputs/DocblockTypeWithParameter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/existing/inputs/DocblockTypeWithParameter.php -------------------------------------------------------------------------------- /out/test/fixtures/existing/inputs/EmptyClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/existing/inputs/EmptyClass.php -------------------------------------------------------------------------------- /out/test/fixtures/existing/inputs/EmptyConstructor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/existing/inputs/EmptyConstructor.php -------------------------------------------------------------------------------- /out/test/fixtures/existing/inputs/ExistingConstructor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/existing/inputs/ExistingConstructor.php -------------------------------------------------------------------------------- /out/test/fixtures/existing/inputs/NullableType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/existing/inputs/NullableType.php -------------------------------------------------------------------------------- /out/test/fixtures/existing/inputs/UseDocblock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/existing/inputs/UseDocblock.php -------------------------------------------------------------------------------- /out/test/fixtures/existing/inputs/UseNullableDocblock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/existing/inputs/UseNullableDocblock.php -------------------------------------------------------------------------------- /out/test/fixtures/existing/inputs/UseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/existing/inputs/UseType.php -------------------------------------------------------------------------------- /out/test/fixtures/existing/outputs/ConstructorDocblockUsingDocblock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/existing/outputs/ConstructorDocblockUsingDocblock.php -------------------------------------------------------------------------------- /out/test/fixtures/existing/outputs/DocblockTypeWithParameter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/existing/outputs/DocblockTypeWithParameter.php -------------------------------------------------------------------------------- /out/test/fixtures/existing/outputs/EmptyClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/existing/outputs/EmptyClass.php -------------------------------------------------------------------------------- /out/test/fixtures/existing/outputs/EmptyConstructor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/existing/outputs/EmptyConstructor.php -------------------------------------------------------------------------------- /out/test/fixtures/existing/outputs/ExistingConstructor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/existing/outputs/ExistingConstructor.php -------------------------------------------------------------------------------- /out/test/fixtures/existing/outputs/NullableType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/existing/outputs/NullableType.php -------------------------------------------------------------------------------- /out/test/fixtures/existing/outputs/UseDocblock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/existing/outputs/UseDocblock.php -------------------------------------------------------------------------------- /out/test/fixtures/existing/outputs/UseNullableDocblock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/existing/outputs/UseNullableDocblock.php -------------------------------------------------------------------------------- /out/test/fixtures/existing/outputs/UseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/existing/outputs/UseType.php -------------------------------------------------------------------------------- /out/test/fixtures/new/inputs/AddConstructorDocblock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/new/inputs/AddConstructorDocblock.php -------------------------------------------------------------------------------- /out/test/fixtures/new/inputs/ClassKeyword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/new/inputs/ClassKeyword.php -------------------------------------------------------------------------------- /out/test/fixtures/new/inputs/EmptyClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/new/inputs/EmptyClass.php -------------------------------------------------------------------------------- /out/test/fixtures/new/inputs/EmptyConstructor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/new/inputs/EmptyConstructor.php -------------------------------------------------------------------------------- /out/test/fixtures/new/inputs/ExistingConstructor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/new/inputs/ExistingConstructor.php -------------------------------------------------------------------------------- /out/test/fixtures/new/inputs/ExistingProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/new/inputs/ExistingProperty.php -------------------------------------------------------------------------------- /out/test/fixtures/new/inputs/ExistingPropertyAssignation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/new/inputs/ExistingPropertyAssignation.php -------------------------------------------------------------------------------- /out/test/fixtures/new/inputs/ExistingPropertyInConstructor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/new/inputs/ExistingPropertyInConstructor.php -------------------------------------------------------------------------------- /out/test/fixtures/new/inputs/MultilineConstructor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/new/inputs/MultilineConstructor.php -------------------------------------------------------------------------------- /out/test/fixtures/new/inputs/MultipleClasses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/new/inputs/MultipleClasses.php -------------------------------------------------------------------------------- /out/test/fixtures/new/inputs/MultipleClassesCursorInFirst.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/new/inputs/MultipleClassesCursorInFirst.php -------------------------------------------------------------------------------- /out/test/fixtures/new/inputs/MultipleClassesCursorInLast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/new/inputs/MultipleClassesCursorInLast.php -------------------------------------------------------------------------------- /out/test/fixtures/new/inputs/TabIndentation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/new/inputs/TabIndentation.php -------------------------------------------------------------------------------- /out/test/fixtures/new/inputs/UpdateConstructorDocblock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/new/inputs/UpdateConstructorDocblock.php -------------------------------------------------------------------------------- /out/test/fixtures/new/outputs/AddConstructorDocblock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/new/outputs/AddConstructorDocblock.php -------------------------------------------------------------------------------- /out/test/fixtures/new/outputs/ClassKeyword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/new/outputs/ClassKeyword.php -------------------------------------------------------------------------------- /out/test/fixtures/new/outputs/EmptyClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/new/outputs/EmptyClass.php -------------------------------------------------------------------------------- /out/test/fixtures/new/outputs/EmptyConstructor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/new/outputs/EmptyConstructor.php -------------------------------------------------------------------------------- /out/test/fixtures/new/outputs/ExistingConstructor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/new/outputs/ExistingConstructor.php -------------------------------------------------------------------------------- /out/test/fixtures/new/outputs/ExistingProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/new/outputs/ExistingProperty.php -------------------------------------------------------------------------------- /out/test/fixtures/new/outputs/ExistingPropertyAssignation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/new/outputs/ExistingPropertyAssignation.php -------------------------------------------------------------------------------- /out/test/fixtures/new/outputs/ExistingPropertyInConstructor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/new/outputs/ExistingPropertyInConstructor.php -------------------------------------------------------------------------------- /out/test/fixtures/new/outputs/MultilineConstructor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/new/outputs/MultilineConstructor.php -------------------------------------------------------------------------------- /out/test/fixtures/new/outputs/MultipleClasses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/new/outputs/MultipleClasses.php -------------------------------------------------------------------------------- /out/test/fixtures/new/outputs/MultipleClassesCursorInFirst.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/new/outputs/MultipleClassesCursorInFirst.php -------------------------------------------------------------------------------- /out/test/fixtures/new/outputs/MultipleClassesCursorInLast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/new/outputs/MultipleClassesCursorInLast.php -------------------------------------------------------------------------------- /out/test/fixtures/new/outputs/TabIndentation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/new/outputs/TabIndentation.php -------------------------------------------------------------------------------- /out/test/fixtures/new/outputs/UpdateConstructorDocblock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/new/outputs/UpdateConstructorDocblock.php -------------------------------------------------------------------------------- /out/test/fixtures/remove/inputs/ConstructorDocblock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/remove/inputs/ConstructorDocblock.php -------------------------------------------------------------------------------- /out/test/fixtures/remove/inputs/ConstructorWithMultipleProperties.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/remove/inputs/ConstructorWithMultipleProperties.php -------------------------------------------------------------------------------- /out/test/fixtures/remove/inputs/ConstructorWithMultiplePropertiesCursorInArgument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/remove/inputs/ConstructorWithMultiplePropertiesCursorInArgument.php -------------------------------------------------------------------------------- /out/test/fixtures/remove/inputs/ConstructorWithMultiplePropertiesCursorInAssignment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/remove/inputs/ConstructorWithMultiplePropertiesCursorInAssignment.php -------------------------------------------------------------------------------- /out/test/fixtures/remove/inputs/ConstructorWithMultiplePropertiesCursorInConstructorDocblock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/remove/inputs/ConstructorWithMultiplePropertiesCursorInConstructorDocblock.php -------------------------------------------------------------------------------- /out/test/fixtures/remove/inputs/ConstructorWithMultiplePropertiesCursorInPropertyStatement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/remove/inputs/ConstructorWithMultiplePropertiesCursorInPropertyStatement.php -------------------------------------------------------------------------------- /out/test/fixtures/remove/inputs/ConstructorWithOneProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/remove/inputs/ConstructorWithOneProperty.php -------------------------------------------------------------------------------- /out/test/fixtures/remove/inputs/ConstructorWithOtherArgument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/remove/inputs/ConstructorWithOtherArgument.php -------------------------------------------------------------------------------- /out/test/fixtures/remove/inputs/ConstructorWithSingleProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/remove/inputs/ConstructorWithSingleProperty.php -------------------------------------------------------------------------------- /out/test/fixtures/remove/inputs/ConstructorWithSinglePropertyAndDocblock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/remove/inputs/ConstructorWithSinglePropertyAndDocblock.php -------------------------------------------------------------------------------- /out/test/fixtures/remove/inputs/EmptyConstructor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/remove/inputs/EmptyConstructor.php -------------------------------------------------------------------------------- /out/test/fixtures/remove/inputs/PropertyWithDocblock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/remove/inputs/PropertyWithDocblock.php -------------------------------------------------------------------------------- /out/test/fixtures/remove/inputs/TypedProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/remove/inputs/TypedProperty.php -------------------------------------------------------------------------------- /out/test/fixtures/remove/outputs/ConstructorDocblock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/remove/outputs/ConstructorDocblock.php -------------------------------------------------------------------------------- /out/test/fixtures/remove/outputs/ConstructorWithMultipleProperties.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/remove/outputs/ConstructorWithMultipleProperties.php -------------------------------------------------------------------------------- /out/test/fixtures/remove/outputs/ConstructorWithMultiplePropertiesCursorInArgument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/remove/outputs/ConstructorWithMultiplePropertiesCursorInArgument.php -------------------------------------------------------------------------------- /out/test/fixtures/remove/outputs/ConstructorWithMultiplePropertiesCursorInAssignment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/remove/outputs/ConstructorWithMultiplePropertiesCursorInAssignment.php -------------------------------------------------------------------------------- /out/test/fixtures/remove/outputs/ConstructorWithMultiplePropertiesCursorInConstructorDocblock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/remove/outputs/ConstructorWithMultiplePropertiesCursorInConstructorDocblock.php -------------------------------------------------------------------------------- /out/test/fixtures/remove/outputs/ConstructorWithMultiplePropertiesCursorInPropertyStatement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/remove/outputs/ConstructorWithMultiplePropertiesCursorInPropertyStatement.php -------------------------------------------------------------------------------- /out/test/fixtures/remove/outputs/ConstructorWithOneProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/remove/outputs/ConstructorWithOneProperty.php -------------------------------------------------------------------------------- /out/test/fixtures/remove/outputs/ConstructorWithOtherArgument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfire/vscode-php-add-property/HEAD/out/test/fixtures/remove/outputs/ConstructorWithOtherArgument.php -------------------------------------------------------------------------------- /out/test/fixtures/remove/outputs/ConstructorWithSingleProperty.php: -------------------------------------------------------------------------------- 1 |