📋 Commit iniziale con: - ✅ Documentazione unificata in docs/ - ✅ Codice Laravel in netgescon-laravel/ - ✅ Script automazione in scripts/ - ✅ Configurazione sync rsync - ✅ Struttura organizzata e pulita 🔄 Versione: 2025.07.19-1644 🎯 Sistema pronto per Git distribuito
17 lines
311 B
PHP
17 lines
311 B
PHP
<?php
|
|
|
|
namespace Illuminate\Contracts\Database\Query;
|
|
|
|
use Illuminate\Database\Grammar;
|
|
|
|
interface Expression
|
|
{
|
|
/**
|
|
* Get the value of the expression.
|
|
*
|
|
* @param \Illuminate\Database\Grammar $grammar
|
|
* @return string|int|float
|
|
*/
|
|
public function getValue(Grammar $grammar);
|
|
}
|