This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE `sandbox`.`new_table` ( | |
`id` INT NOT NULL, | |
`name` VARCHAR(45) NULL, | |
`email` VARCHAR(45) NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE INDEX `email_UNIQUE` (`email` ASC)); | |
INSERT INTO new_table | |
(id, name, email) | |
VALUES |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
interface MyEntityInterface | |
{ | |
function foo(string $a): int; | |
function bar(int $b): string; | |
} | |
final class MyEntity implements MyEntityInterface | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<xs:schema | |
xmlns:xs="http://www.w3.org/2001/XMLSchema" | |
xmlns="http://pmd.sf.net/ruleset/1.0.0" | |
targetNamespace="http://pmd.sf.net/ruleset/1.0.0" | |
elementFormDefault="qualified"> | |
<xs:element name="ruleset"> | |
<xs:complexType> | |
<xs:sequence> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<ruleset | |
name="phpmd-phpincludepath-test" | |
xmlns="http://pmd.sf.net/ruleset/1.0.0" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://pmd.sf.net/ruleset/1.0.0 http://pmd.sf.net/ruleset_xml_schema.xsd" | |
xsi:noNamespaceSchemaLocation="http://pmd.sf.net/ruleset_xml_schema.xsd"> | |
<description>First description...</description> |