Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ final class StringExtensionToConfigBuilderRector extends AbstractRector
'maker' => 'Symfony\Config\MakerConfig',
'nelmio_cors' => 'Symfony\Config\NelmioCorsConfig',
'api_platform' => 'Symfony\Config\ApiPlatformConfig',
'flysystem' => 'Symfony\Config\FlysystemConfig',
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

could you add @see link comment reference on it for future reference? Thank you.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ofcourse! Could you tell me where you want the link to point to?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

just in above it, like:

       // @see ...
        'flysystem' => 'Symfony\Config\FlysystemConfig'

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If I understand correctly, 4148bb7 is what you meant.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

not sure I understand how the class work, is Symfony\Config\FlysystemConfig auto created on the fly? since your reference pointed to different class

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes that's correct. If you installed flysystem then the added class is automatically generated based on the reference. This works the same as currently for the other keys.

];

public function __construct(
Expand Down
Loading