@@ -275,7 +275,8 @@ public function createEntity($entity_type, \StdClass $entity) {
275275 'entity_type ' => $ entity_type ,
276276 'entity ' => $ entity ,
277277 ];
278- $ result = $ this ->drush ('behat ' , ['create-entity ' , escapeshellarg (json_encode ($ options ))], []);
278+ $ result = $ this ->drush ('behat ' ,
279+ ['create-entity ' , escapeshellarg (json_encode ($ options ))], []);
279280 return $ this ->decodeJsonObject ($ result );
280281 }
281282
@@ -287,7 +288,8 @@ public function entityDelete($entity_type, \StdClass $entity) {
287288 'entity_type ' => $ entity_type ,
288289 'entity ' => $ entity ,
289290 ];
290- $ this ->drush ('behat ' , ['delete-entity ' , escapeshellarg (json_encode ($ options ))], []);
291+ $ this ->drush ('behat ' ,
292+ ['delete-entity ' , escapeshellarg (json_encode ($ options ))], []);
291293 }
292294
293295 /**
@@ -301,7 +303,9 @@ public function createNode($node) {
301303 $ node ->uid = $ uid ;
302304 }
303305 }
304- $ result = $ this ->drush ('behat ' , ['create-node ' , escapeshellarg (json_encode ($ node ))], []);
306+ $ result = $ this ->drush ('behat ' ,
307+ ['create-node ' , escapeshellarg (json_encode ($ node ))],
308+ []);
305309 return $ this ->decodeJsonObject ($ result );
306310 }
307311
@@ -316,7 +320,11 @@ public function nodeDelete($node) {
316320 * {@inheritdoc}
317321 */
318322 public function createTerm (\stdClass $ term ) {
319- $ result = $ this ->drush ('behat ' , ['create-term ' , escapeshellarg (json_encode ($ term ))], []);
323+ $ result = $ this ->drush ('behat ' ,
324+ [
325+ 'create-term ' ,
326+ escapeshellarg (json_encode ($ term )),
327+ ], []);
320328 return $ this ->decodeJsonObject ($ result );
321329 }
322330
0 commit comments