mysql.php 195 B

123456789101112
  1. <?php namespace Laravel\Database\Query\Grammars;
  2. class MySQL extends Grammar {
  3. /**
  4. * The keyword identifier for the database system.
  5. *
  6. * @var string
  7. */
  8. protected $wrapper = '`%s`';
  9. }