Skip to content
Snippets Groups Projects
Commit 9e464890 authored by Grzegorz Rola's avatar Grzegorz Rola
Browse files

Code review

parent d29c216e
No related branches found
No related tags found
1 merge request!12Bugfix/init file
Pipeline #9574 passed
This commit is part of merge request !12. Comments created here will be created in the context of that merge request.
<?php
require_once 'vendor/autoload.php';
require_once __DIR__ . '/vendor/autoload.php';
if (!class_exists('\WPDesk\Notice\AjaxHandler')) {
require_once 'src/WPDesk/Notice/AjaxHandler.php';
require_once __DIR__ . '/src/WPDesk/Notice/AjaxHandler.php';
}
if (!class_exists('\WPDesk\Notice\Notice')) {
require_once 'src/WPDesk/Notice/Notice.php';
require_once __DIR__ . 'src/WPDesk/Notice/Notice.php';
}
if (!class_exists('\WPDesk\Notice\PermanentDismissibleNotice')) {
require_once 'src/WPDesk/Notice/PermanentDismissibleNotice.php';
require_once __DIR__ . '/src/WPDesk/Notice/PermanentDismissibleNotice.php';
}
if (!class_exists('\WPDesk\Notice\Factory')) {
require_once 'src/WPDesk/Notice/Factory.php';
require_once __DIR__ . '/src/WPDesk/Notice/Factory.php';
}
require_once 'src/WPDesk/notice-functions.php';
require_once __DIR__ . '/src/WPDesk/notice-functions.php';
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment