Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:94604 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 28807 invoked from network); 21 Jul 2016 04:29:22 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 21 Jul 2016 04:29:22 -0000 Authentication-Results: pb1.pair.com header.from=php@golemon.com; sender-id=softfail Authentication-Results: pb1.pair.com smtp.mail=php@golemon.com; spf=softfail; sender-id=softfail Received-SPF: softfail (pb1.pair.com: domain golemon.com does not designate 209.85.223.175 as permitted sender) X-PHP-List-Original-Sender: php@golemon.com X-Host-Fingerprint: 209.85.223.175 mail-io0-f175.google.com Received: from [209.85.223.175] ([209.85.223.175:36195] helo=mail-io0-f175.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 30/49-52781-1AF40975 for ; Thu, 21 Jul 2016 00:29:21 -0400 Received: by mail-io0-f175.google.com with SMTP id b62so65810214iod.3 for ; Wed, 20 Jul 2016 21:29:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=golemon-com.20150623.gappssmtp.com; s=20150623; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:cc; bh=2BjA2fYWo5010+Ti9QYaHVyGeeEPv8JzHmyJesGaDvI=; b=cf+oAMsFTHSylpCWPXCQyi6m7AyFoypCWUqEB8/kr+kE+Gqg25bF4jjYI1XsBACpEa wSZwyqS98qdghfM0gDIzjMgumbMBSu5pnMo1Ni8XqfscjgOoMZHGdm2zjjadrC6sq3tg ulTXmRzOyX71xWFa39vpVSEDzSH+qJTniUMFJVTT/VegbDuAIPOJztlV4t4jRzsuJO0o PD79k55hKr+oE27ID1Z3hk9u2GJtDuSm9wU1hX3pvn/enM9cWvJ05eS/ofSjHAxVnewQ +6tyhcMYqZojPBV9FPgchePD/MNcaqQ9D4nhOx6bACqFyRpJrPk+dWL0UnR+5rLa8GY2 wcvg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:sender:in-reply-to:references:from :date:message-id:subject:to:cc; bh=2BjA2fYWo5010+Ti9QYaHVyGeeEPv8JzHmyJesGaDvI=; b=Lu5GNz5NGxRWTfl05Iuyi1jeUrKVsKNP5Y3Z25MfC/ITVtc4uTooAEIo61W1gx3tK8 nBfYa+6zLHXQnCk82MIVdxcAtO6mMBWop6MagpMnfjwuBASMuTc8jBuE2mO58M0mHosO ZbKqs91D5l01Rk0nIq64z1sDUCUmMVq0YfmDgc5COs1Di7ykYwJAm+zEUfFmhFUejqGZ UccOm2HxtZemMPpkhpebfKA/SZjrxmkpNOrVeGFG5UHyPHLiK44x+6SYd8jRez48KZiD BIMJPfi6sdvghteAv462vcxop1hUhzJ50xDveVWHYeNjs/VYirlcEJ+DlVoNGICU6YkM KKPQ== X-Gm-Message-State: ALyK8tLjzglKLARGjxyoofeMHAVH42DbqMixK2V7oixb83V/OLtXw2lyrMD+zYEPY2Owi+UVsApSFxX77satJA== X-Received: by 10.107.152.149 with SMTP id a143mr36360623ioe.193.1469075358998; Wed, 20 Jul 2016 21:29:18 -0700 (PDT) MIME-Version: 1.0 Sender: php@golemon.com Received: by 10.36.117.201 with HTTP; Wed, 20 Jul 2016 21:29:18 -0700 (PDT) X-Originating-IP: [107.198.91.68] In-Reply-To: References: <20160721000555.C7F861A810A0@dd1730.kasserver.com> Date: Wed, 20 Jul 2016 21:29:18 -0700 X-Google-Sender-Auth: Wm8xB74iT_8tHpHeQeRNKjvEaUU Message-ID: To: Thomas Bley Cc: "internals@lists.php.net" Content-Type: text/plain; charset=UTF-8 Subject: Re: [PHP-DEV] Pipe Operator v2 From: pollita@php.net (Sara Golemon) > On Thu, Jul 21, 2016 at 9:05 AM, Thomas Bley wrote: > to me this code is perfectly readable and static code analysis is only complaining about missing semicolons at the end of the lines and short variable names: > > $x = loadConfig(); > $x = buildDic($x); > $x = getApp($x) > $x = getRouter($x) > $x = getDispatcher($x, $request) > $x = dispatchBusinessLogic($x, $request, new Response()) > $x = renderResponse($x) > $x = buildPsr7Response($x) > $response =emit($x); > A proper static analyzer would also not that $x is continuously changing types, another heave code smell. > I'm not sure if there is a ORM or database library out there which constructs > SQL queries with non-oop calls, maybe you can give a real-world example. > The third example in the RFC (FBShipIt) shows this exact operator in a real-world usage in "php-like" code. -Sara