See how a minor change to your commit message style can make a difference.
Tip
Take a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
See how a minor change to your commit message style can make a difference.
Tip
Take a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
// ... controller Logic use EntityManagerInterface | |
$filters = $entityManager->getFilters(); | |
$filters->disable('softdeleteable'); | |
// .. get all the needed entitys |
<?php declare(strict_types=1); | |
namespace App\Entity; | |
use Doctrine\ORM\Mapping as ORM; | |
use Gedmo\Mapping\Annotation\Versioned; | |
trait AssigneableEntityTrait | |
{ | |
#[ORM\ManyToOne] |
{# | |
Signature Pad for Symfony Forms | |
© 2024 by Michael Ihde wemida.com | |
https://github.com/wemida | |
Variables to use with include: | |
{% include with ... %} => see below example | |
{{ sig_title ?? 'E-Signature' }} | |
{{ sig_info_text ?? 'Sign in the canvas below and save your signature as an image!' }} | |
{{ sig_canvas_id ?? 'sig-canvas' }} |
<tr> | |
<!--<td style="width: 100%">--> | |
<td> | |
<b>Fragetitel</b> | |
<br />Description frage beschreibung | |
</td> | |
<td> | |
<input type="hidden" value="" name="emoji-rating" id="emoji-rating" /> | |
<div class="btn-group"> | |
<button type="button" class="btn btn-outline-secondary btnrating" data-attr="1" id="rating-star-1"> |
<!DOCTYPE html> | |
<html lang="de"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta name="description" content="Beispieldokument mit den wichtigsten HTML-Tags"> | |
<title>Wichtige HTML-Tags</title> | |
<link rel="stylesheet" href="styles.css"> | |
<style> |
php -dxdebug.mode=debug -dxdebug.client_host=127.0.0.1 -dxdebug.client_port=9003 -dxdebug.start_with_request=yes bin/console |
function asyncFuncWithPromise(): Promise<string> { | |
return new Promise((resolve) => { | |
setTimeout(() => { | |
resolve('asyncFuncWithPromise :: resolved after 1 second'); | |
}, 1000); | |
}); | |
} | |
async function asyncFuncWithAwait(): Promise<string> { | |
await asyncFuncWithPromise(); |
<?php declare(strict_types=1); | |
class A {} | |
class B {} | |
class C {} | |
$classes = [ | |
new A(), | |
new B(), | |
]; |
camelCase | |
PascalCase | |
snake_case | |
UPPER_SNAKE_CASE | |
kebab-case (dash-case) | |
UPPER-KEBAB-CASE | |
dot.case | |
UPPER.DOT.CASE | |
unicorncase | |
UPPERUNICORNCASE (TROLLCASE) |