I have this problem:
I can control the space in array environment with \arraycolsep, but it doesn't work in cases environment. Is there an alternative of \arraycolsep for cases environment?
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\setlength{\arraycolsep}{2.2pt}
$\begin{array}{cl}
4x-5y =23& \scriptstyle |\cdot 3\\
6x+7y=-9& \scriptstyle |\cdot (-2)
\end{array}$
$\begin{cases}
4x-5y =23& \scriptstyle |\cdot 3\
6x+7y=-9& \scriptstyle |\cdot (-2)
\end{cases}$
\end{document}

