Skip to content
Snippets Groups Projects

Issue #2707689: NodeForm::actions() checks for delete access on new entities

1 file
+ 4
1
Compare changes
  • Side-by-side
  • Inline
  • 3f8d0bd2
    Issue #2867871 by kyvour, neclimdul, ranjith_kumar_k_u: Use of Symfony... · 3f8d0bd2
    catch authored
    Issue #2867871 by kyvour, neclimdul, ranjith_kumar_k_u: Use of Symfony Expression Language "Expression" in OptimizedPhpArrayDumperTest doesn't match library
@@ -559,7 +559,7 @@ public function testGetServiceDefinitionForDecoratedService() {
* @covers ::dumpValue
*/
public function testGetServiceDefinitionForExpression() {
$expression = new Expression();
$expression = new Expression('');
$bar_definition = new Definition('\stdClass');
$bar_definition->setPublic(TRUE);
@@ -713,6 +713,9 @@ protected function getRaw($value) {
*/
class Expression {
public function __construct($expression) {
}
/**
* Gets the string representation of the expression.
*/
Loading