- Issue created by @pablo_pukha
- Status changed to Needs work
over 1 year ago 12:08pm 12 April 2023 - 🇮🇳India vishal.kadam Mumbai
@Pablo_Pukha Remember to change the status to Needs review when the project is ready for review.
- 🇮🇳India vishal.kadam Mumbai
@Pablo_Pukha Remember to change the status to Needs review when the project is ready for review.
- Status changed to Needs review
over 1 year ago 12:33pm 12 April 2023 - Status changed to Needs work
over 1 year ago 12:48pm 12 April 2023 - 🇮🇳India vishal.kadam Mumbai
1. 8.x-dev is a wrong branch name, as branch names end with the literal .x. That branch needs to be removed.
2. Remove the LICENSE.txt file. The LICENSE file isn't necessary. It will be added automatically by the packaging script.
3. Replace README.txt with README.md file. Follow the guidelines.
- 🇺🇦Ukraine pablo_pukha
Thanks for your comments. I have successfully fixed the above issues
- Status changed to Needs review
over 1 year ago 1:26pm 12 April 2023 - 🇮🇳India vishal.kadam Mumbai
Rest looks fine to me.
Let’s wait for other reviewers to take a look and if everything goes fine, you will get the role.
- Status changed to Needs work
over 1 year ago 11:31am 22 April 2023 - 🇮🇹Italy apaderno Brescia, 🇮🇹
- The following points are just a start and don't necessarily encompass all of the changes that may be necessary
- A specific point may just be an example and may apply in other places
- A review is about code that doesn't follow the coding standards, contains possible security issue, or doesn't correctly use the Drupal API; the single points aren't ordered, not even by importance
src/Plugin/rest/resource/SiteInfo.php
class SiteInfo extends ResourceBase { /** * The system.site config. * * @var \Drupal\Core\Config\ImmutableConfig */ protected ImmutableConfig $siteConfig; /** * The request stack. * * @var \Symfony\Component\HttpFoundation\RequestStack */ protected RequestStack $requestStack;
Drupal 9 minimum PHP version is PHP 7.3, which cannot parse those property definitions. Either those definitions are changed or the module requires at least Drupal 9.4, as per #2917655: [9.4.x only] Drop official PHP 7.3 support in Drupal 9.4 → .
public function __construct( array $configuration, $plugin_id, $plugin_definition, array $serializer_formats, LoggerInterface $logger, ConfigFactoryInterface $config_factory, RequestStack $request_stack ) {
As per Drupal coding standards, all the method parameters must be defined on a single line. That is how code would be formatted as per PSR12, which is not a coding standards Drupal follows.
- 🇺🇦Ukraine pablo_pukha
Thanks for your comments. I have successfully fixed the above issues
- Status changed to Needs review
over 1 year ago 12:44pm 25 April 2023 - 🇮🇳India shashank5563 New Delhi
I have tested on local and found it is working fine. Code also looks good for me.
Let’s wait for other reviewers to take a look and if everything goes fine, you will get the role.
- Assigned to apaderno
- Status changed to RTBC
over 1 year ago 9:20am 7 May 2023 - 🇮🇹Italy apaderno Brescia, 🇮🇹
Thank you for your contribution! I am going to update your account.
These are some recommended readings to help with excellent maintainership:
- Dries → ' post on Responsible maintainers
- Best practices for creating and maintaining projects →
- Maintaining a drupal.org project with Git →
- Commit messages - providing history and credit →
- Release naming conventions → .
- Helping maintainers in the issue queues →
You can find more contributors chatting on the Slack → #contribute channel. So, come hang out and stay involved → .
Thank you, also, for your patience with the review process.
Anyone is welcome to participate in the review process. Please consider reviewing other projects that are pending review → . I encourage you to learn more about that process and join the group of reviewers.I thank all the reviewers.
- Status changed to Fixed
over 1 year ago 9:21am 7 May 2023 Automatically closed - issue fixed for 2 weeks with no activity.